|
@@ -423,7 +423,7 @@ void ScrollContainer::update_scrollbars() {
|
|
|
|
|
|
v_scroll->set_max(min.height);
|
|
v_scroll->set_max(min.height);
|
|
if (hide_scroll_v) {
|
|
if (hide_scroll_v) {
|
|
-
|
|
|
|
|
|
+ v_scroll->set_page(size.height);
|
|
v_scroll->hide();
|
|
v_scroll->hide();
|
|
scroll.y = 0;
|
|
scroll.y = 0;
|
|
} else {
|
|
} else {
|
|
@@ -440,7 +440,7 @@ void ScrollContainer::update_scrollbars() {
|
|
|
|
|
|
h_scroll->set_max(min.width);
|
|
h_scroll->set_max(min.width);
|
|
if (hide_scroll_h) {
|
|
if (hide_scroll_h) {
|
|
-
|
|
|
|
|
|
+ h_scroll->set_page(size.width);
|
|
h_scroll->hide();
|
|
h_scroll->hide();
|
|
scroll.x = 0;
|
|
scroll.x = 0;
|
|
} else {
|
|
} else {
|