diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-13 10:51:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 10:51:46 +0200 |
commit | ae5a962cc4e28aec1ca90c653bd92be92febd271 (patch) | |
tree | 0d5762816e3ae8c0808171c4849d94a6dbe20965 /scene/gui/popup.h | |
parent | 89ca5b9d05a6389a9e52ede5367cef136d5b8ea8 (diff) | |
parent | f7269fe878179695869d5a0b49b5a01005dfb5a7 (diff) |
Merge pull request #61842 from bruvzg/popup_fixes_sw
Diffstat (limited to 'scene/gui/popup.h')
-rw-r--r-- | scene/gui/popup.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scene/gui/popup.h b/scene/gui/popup.h index 27f46d4a97..b53c8be50f 100644 --- a/scene/gui/popup.h +++ b/scene/gui/popup.h @@ -48,8 +48,6 @@ class Popup : public Window { void _initialize_visible_parents(); void _deinitialize_visible_parents(); - void _parent_focused(); - protected: void _close_pressed(); virtual Rect2i _popup_adjust_rect() const override; @@ -57,7 +55,7 @@ protected: void _notification(int p_what); static void _bind_methods(); - void _popup_conditional_hide(); + virtual void _parent_focused(); virtual void _post_popup() override; |