Reverted accidentally commit "Uncomented requestLayout() in scrollbar fix scrollbox sliders update issues" from this branch

This commit is contained in:
and3md 2017-03-23 18:01:42 +01:00
parent 3bb823901f
commit e68496897e
1 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ class AbstractSlider : WidgetGroup {
@property AbstractSlider pageSize(int size) {
if (_pageSize != size) {
_pageSize = size;
requestLayout();
//requestLayout();
}
return this;
}
@ -107,7 +107,7 @@ class AbstractSlider : WidgetGroup {
if (_minValue != min || _maxValue != max) {
_minValue = min;
_maxValue = max;
requestLayout();
//requestLayout();
}
return this;
}