mirror of https://github.com/buggins/dlangui.git
Uncomented requestLayout() in scrollbar fix scrollbox sliders update issues
Possible fix #192.
This commit is contained in:
parent
767aa4bdbe
commit
3bb823901f
|
@ -84,7 +84,7 @@ class AbstractSlider : WidgetGroup {
|
||||||
@property AbstractSlider pageSize(int size) {
|
@property AbstractSlider pageSize(int size) {
|
||||||
if (_pageSize != size) {
|
if (_pageSize != size) {
|
||||||
_pageSize = size;
|
_pageSize = size;
|
||||||
//requestLayout();
|
requestLayout();
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
@ -107,7 +107,7 @@ class AbstractSlider : WidgetGroup {
|
||||||
if (_minValue != min || _maxValue != max) {
|
if (_minValue != min || _maxValue != max) {
|
||||||
_minValue = min;
|
_minValue = min;
|
||||||
_maxValue = max;
|
_maxValue = max;
|
||||||
//requestLayout();
|
requestLayout();
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue