You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
Precise size calculation of ScrollContainer
This commit is contained in:
@@ -368,8 +368,10 @@ void ScrollContainer::update_scrollbars() {
|
|||||||
Ref<StyleBox> sb = get_stylebox("bg");
|
Ref<StyleBox> sb = get_stylebox("bg");
|
||||||
size -= sb->get_minimum_size();
|
size -= sb->get_minimum_size();
|
||||||
|
|
||||||
Size2 hmin = h_scroll->get_combined_minimum_size();
|
Size2 hmin;
|
||||||
Size2 vmin = v_scroll->get_combined_minimum_size();
|
Size2 vmin;
|
||||||
|
if (scroll_h) hmin = h_scroll->get_combined_minimum_size();
|
||||||
|
if (scroll_v) vmin = v_scroll->get_combined_minimum_size();
|
||||||
|
|
||||||
Size2 min = child_max_size;
|
Size2 min = child_max_size;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user