Merge pull request #92645 from WhalesState/container-resort
Fix `NOTIFICATION_SORT_CHILDREN` is called twice on startup
This commit is contained in:
commit
2c01573fdf
1 changed files with 2 additions and 6 deletions
|
@ -177,13 +177,9 @@ Vector<int> Container::get_allowed_size_flags_vertical() const {
|
|||
|
||||
void Container::_notification(int p_what) {
|
||||
switch (p_what) {
|
||||
case NOTIFICATION_ENTER_TREE: {
|
||||
pending_sort = false;
|
||||
queue_sort();
|
||||
} break;
|
||||
|
||||
case NOTIFICATION_RESIZED:
|
||||
case NOTIFICATION_THEME_CHANGED: {
|
||||
case NOTIFICATION_THEME_CHANGED:
|
||||
case NOTIFICATION_ENTER_TREE: {
|
||||
queue_sort();
|
||||
} break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue