diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-02-24 11:21:23 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-02-25 09:33:27 +0200 |
commit | 74ff5921d68ca09942d8988d5a78849b46d8583b (patch) | |
tree | 364847d2d52f728f6ed18de56d306fcbf53ad07d /platform/osx/godot_content_view.mm | |
parent | 80baa1386a5a19ed8ea50082617d2ae9112678fc (diff) |
Improve popup window handling.
Add window FLAG_POPUP and a platform specific routines to control popup auto-hiding and event forwarding.
Diffstat (limited to 'platform/osx/godot_content_view.mm')
-rw-r--r-- | platform/osx/godot_content_view.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/godot_content_view.mm b/platform/osx/godot_content_view.mm index 76d9cfb081..e96f0a8098 100644 --- a/platform/osx/godot_content_view.mm +++ b/platform/osx/godot_content_view.mm @@ -281,7 +281,7 @@ } DisplayServerOSX::WindowData &wd = ds->get_window(window_id); - return !wd.no_focus; + return !wd.no_focus && !wd.is_popup; } - (BOOL)acceptsFirstResponder { |