Update changelog
This commit is contained in:
parent
6e25f98b2b
commit
56a41df4e7
|
@ -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
|
||||||
|
|
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue