Update changelog

This commit is contained in:
0xboobface 2020-06-13 20:51:24 +02:00
parent 6e25f98b2b
commit 56a41df4e7
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,8 @@
* Server Settings are now editable in the web-interface * Server Settings are now editable in the web-interface
* Models can be added by name in the web-interface * Models can be added by name in the web-interface
* Added a bandwidth monitor * Added a bandwidth monitor
* Added possibility to add notes to recordings
* Added range slider to restrict the recording resolution in a range; e.g. 480p - 1080p
* Improved MFC SD downloads (much less blocking, I think) * Improved MFC SD downloads (much less blocking, I think)
3.7.3 3.7.3

View File

@ -31,8 +31,6 @@ public class RangeSliderSkin extends SkinBase<RangeSlider<?>> {
this.behavior = behavior; this.behavior = behavior;
initTrack(); initTrack();
initThumbs(thumbRange); initThumbs(thumbRange);
;
registerChangeListener(control.getLow(), (obsVal) -> getSkinnable().requestLayout()); registerChangeListener(control.getLow(), (obsVal) -> getSkinnable().requestLayout());
registerChangeListener(control.getHigh(), (obsVal) -> getSkinnable().requestLayout()); registerChangeListener(control.getHigh(), (obsVal) -> getSkinnable().requestLayout());
} }