mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 19:42:43 +00:00
Merge pull request #93444 from JaviARodriguez/Open-source-Contribution
Fix FlowContainer scale from also scaling wrap point
This commit is contained in:
commit
e526f12c6f
@ -57,7 +57,7 @@ void FlowContainer::_resort() {
|
||||
int line_height = 0;
|
||||
int line_length = 0;
|
||||
float line_stretch_ratio_total = 0;
|
||||
int current_container_size = vertical ? get_rect().size.y : get_rect().size.x;
|
||||
int current_container_size = vertical ? get_size().y : get_size().x;
|
||||
int children_in_current_line = 0;
|
||||
Control *last_child = nullptr;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user