1
0
Fork 0

Merge pull request #33403 from codecustard/fix_itemlist_maxcolumn_update

Fixes ItemList max column update
This commit is contained in:
Rémi Verschelde 2019-11-06 22:23:54 +01:00 committed by GitHub
commit e62aa53b94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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 {