diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-07 11:57:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 11:57:47 +0200 |
commit | d567abd714f25afabf29673383697f1cf3b37329 (patch) | |
tree | c32470c634aa27ec1c7abf296ee5af22f8626ce9 /scene/gui/grid_container.cpp | |
parent | 76ec21707ea39cc83537fc98250387972b432bb7 (diff) | |
parent | c1c76850cb47c0f8451fce6353958006e95b2cda (diff) |
Merge pull request #49382 from akien-mga/misc-cleanup
Style: Cleanup uses of double spaces between words
Diffstat (limited to 'scene/gui/grid_container.cpp')
-rw-r--r-- | scene/gui/grid_container.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/grid_container.cpp b/scene/gui/grid_container.cpp index 541925a802..a54f5eef06 100644 --- a/scene/gui/grid_container.cpp +++ b/scene/gui/grid_container.cpp @@ -33,7 +33,7 @@ void GridContainer::_notification(int p_what) { switch (p_what) { case NOTIFICATION_SORT_CHILDREN: { - Map<int, int> col_minw; // Max of min_width of all controls in each col (indexed by col). + Map<int, int> col_minw; // Max of min_width of all controls in each col (indexed by col). Map<int, int> row_minh; // Max of min_height of all controls in each row (indexed by row). Set<int> col_expanded; // Columns which have the SIZE_EXPAND flag set. Set<int> row_expanded; // Rows which have the SIZE_EXPAND flag set. |