diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-04 11:16:45 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-04 11:16:45 +0200 |
commit | 3e8ebb9a99f2b17d70c86f2a6a3e08e6ea6a84c6 (patch) | |
tree | e266874daa3b1ab11bf133e4e948cec990ba7e6a /editor | |
parent | 9abf86f4fee9a7295ffa289444e1feb84b5e2e94 (diff) | |
parent | 8009d7c6daf48370094faff9184e92c91e8dee0a (diff) | |
download | redot-engine-3e8ebb9a99f2b17d70c86f2a6a3e08e6ea6a84c6.tar.gz |
Merge pull request #96554 from bruvzg/mac_title_dblc
[macOS] Make gaps between editor titlebar buttons unclickabe to prevent accidental window move/resize.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_node.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 32e6126225..8687601a2c 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -7165,6 +7165,7 @@ EditorNode::EditorNode() { } main_menu = memnew(MenuBar); + main_menu->set_mouse_filter(Control::MOUSE_FILTER_STOP); title_bar->add_child(main_menu); main_menu->set_theme_type_variation("MainMenuBar"); main_menu->set_start_index(0); // Main menu, add to the start of global menu. @@ -7347,6 +7348,7 @@ EditorNode::EditorNode() { } main_editor_button_hb = memnew(HBoxContainer); + main_editor_button_hb->set_mouse_filter(Control::MOUSE_FILTER_STOP); title_bar->add_child(main_editor_button_hb); // Options are added and handled by DebuggerEditorPlugin. @@ -7441,11 +7443,13 @@ EditorNode::EditorNode() { title_bar->add_child(right_spacer); project_run_bar = memnew(EditorRunBar); + project_run_bar->set_mouse_filter(Control::MOUSE_FILTER_STOP); title_bar->add_child(project_run_bar); project_run_bar->connect("play_pressed", callable_mp(this, &EditorNode::_project_run_started)); project_run_bar->connect("stop_pressed", callable_mp(this, &EditorNode::_project_run_stopped)); HBoxContainer *right_menu_hb = memnew(HBoxContainer); + right_menu_hb->set_mouse_filter(Control::MOUSE_FILTER_STOP); title_bar->add_child(right_menu_hb); renderer = memnew(OptionButton); |