diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-10-08 16:15:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-08 16:15:45 +0200 |
commit | 45577e42334acd71cf178a8cc188ec5b1469e5e1 (patch) | |
tree | e98b30ae4c0e657cf281e6687a2b3af385115622 /scene/gui | |
parent | e2f1b305659728c23ff30a9bbe2684066a6f63ac (diff) | |
parent | f73e1fae370f55774697ae0e3b30a97e0a8e78aa (diff) |
Merge pull request #32571 from DavidSichma/rect_flip
Correctly flip texture src region
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/item_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/item_list.cpp b/scene/gui/item_list.cpp index 4d06bee0d4..1a0539effa 100644 --- a/scene/gui/item_list.cpp +++ b/scene/gui/item_list.cpp @@ -926,7 +926,7 @@ void ItemList::_notification(int p_what) { current_columns = max_columns; while (true) { - //repeat util all fits + //repeat until all fits bool all_fit = true; Vector2 ofs; int col = 0; |