|
@@ -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);
|