summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcodecustard <emmanuelbarroga@gmail.com>2019-11-06 12:26:51 -0800
committercodecustard <emmanuelbarroga@gmail.com>2019-11-06 12:26:51 -0800
commit71e79af1f14259598e687b4b64ab935e3bd2c3e2 (patch)
treec9da7b39b1055ab70c1a26f7e4c84e4a99585ac0
parent500863859ca34fec245cdf9ff4bc236a308904c4 (diff)
Fixes ItemList max column update
When setting the max column of an ItemList, the layout does not update until it is resized.
-rw-r--r--scene/gui/item_list.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/item_list.cpp b/scene/gui/item_list.cpp
index 1a0539effa..1406586361 100644
--- a/scene/gui/item_list.cpp
+++ b/scene/gui/item_list.cpp
@@ -411,6 +411,7 @@ void ItemList::set_max_columns(int p_amount) {
ERR_FAIL_COND(p_amount < 0);
max_columns = p_amount;
update();
+ shape_changed = true;
}
int ItemList::get_max_columns() const {