diff options
| author | derammo <817160+derammo@users.noreply.github.com> | 2022-05-13 08:22:29 -0400 |
|---|---|---|
| committer | derammo <817160+derammo@users.noreply.github.com> | 2022-05-13 09:30:00 -0400 |
| commit | 47d0dc8a410f9a69f40db6ce0f65b8493a78d3a4 (patch) | |
| tree | 2ed2897a285b974c584c8e7a240dae51e435b63b /editor | |
| parent | 677b63d7656fd0f11e224e0858fcf9479486595d (diff) | |
popup deferred hide suppressed if reopened
popup no longer tries to close itself a second time
popup no longer closes after having been reopened
fixed bug in RenameDialog not calling base (by inspection)
fixes #59181
fixes #60921
reverts #59287
Diffstat (limited to 'editor')
| -rw-r--r-- | editor/rename_dialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/rename_dialog.cpp b/editor/rename_dialog.cpp index 1d9e799a30..e47250fcf8 100644 --- a/editor/rename_dialog.cpp +++ b/editor/rename_dialog.cpp @@ -356,6 +356,8 @@ void RenameDialog::_update_substitute() { } void RenameDialog::_post_popup() { + ConfirmationDialog::_post_popup(); + EditorSelection *editor_selection = EditorNode::get_singleton()->get_editor_selection(); preview_node = nullptr; |