Bläddra i källkod

Merge pull request #43833 from volzhs/fix-scrollcontainer-bar-max-value

Fix to update scroll bar has correct max value in ScrollContainer
Rémi Verschelde 4 år sedan
förälder
incheckning
8c713fa9bf
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      scene/gui/scroll_container.cpp

+ 2 - 2
scene/gui/scroll_container.cpp

@@ -414,12 +414,12 @@ void ScrollContainer::update_scrollbars() {
 	bool hide_scroll_v = !scroll_v || min.height <= size.height;
 	bool hide_scroll_h = !scroll_h || min.width <= size.width;
 
+	v_scroll->set_max(min.height);
 	if (hide_scroll_v) {
 		v_scroll->hide();
 		scroll.y = 0;
 	} else {
 		v_scroll->show();
-		v_scroll->set_max(min.height);
 		if (hide_scroll_h) {
 			v_scroll->set_page(size.height);
 		} else {
@@ -429,12 +429,12 @@ void ScrollContainer::update_scrollbars() {
 		scroll.y = v_scroll->get_value();
 	}
 
+	h_scroll->set_max(min.width);
 	if (hide_scroll_h) {
 		h_scroll->hide();
 		scroll.x = 0;
 	} else {
 		h_scroll->show();
-		h_scroll->set_max(min.width);
 		if (hide_scroll_v) {
 			h_scroll->set_page(size.width);
 		} else {