mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 06:03:38 +00:00
Merge pull request #62835 from besh81/master
This commit is contained in:
commit
74ab3dce4f
@ -41,8 +41,6 @@ void GridContainer::_notification(int p_what) {
|
||||
|
||||
int hsep = get_theme_constant(SNAME("h_separation"));
|
||||
int vsep = get_theme_constant(SNAME("v_separation"));
|
||||
int max_col = MIN(get_child_count(), columns);
|
||||
int max_row = ceil((float)get_child_count() / (float)columns);
|
||||
|
||||
// Compute the per-column/per-row data.
|
||||
int valid_controls_index = 0;
|
||||
@ -79,6 +77,9 @@ void GridContainer::_notification(int p_what) {
|
||||
}
|
||||
}
|
||||
|
||||
int max_col = MIN(valid_controls_index, columns);
|
||||
int max_row = ceil((float)valid_controls_index / (float)columns);
|
||||
|
||||
// Consider all empty columns expanded.
|
||||
for (int i = valid_controls_index; i < columns; i++) {
|
||||
col_expanded.insert(i);
|
||||
|
Loading…
Reference in New Issue
Block a user