1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Prevent division by zero in GridContainer

This commit is contained in:
Leon Krause
2018-03-07 17:31:30 +01:00
parent 2f3c45f55e
commit 38623e07ac

View File

@@ -130,8 +130,8 @@ void GridContainer::_notification(int p_what) {
} }
// Finally, fit the nodes // Finally, fit the nodes
int col_expand = remaining_space.width / col_expanded.size(); int col_expand = col_expanded.size() > 0 ? remaining_space.width / col_expanded.size() : 0;
int row_expand = remaining_space.height / row_expanded.size(); int row_expand = row_expanded.size() > 0 ? remaining_space.height / row_expanded.size() : 0;
int col_ofs = 0; int col_ofs = 0;
int row_ofs = 0; int row_ofs = 0;