From a1e47c3a875ba4a475f9760a6a2b2f7852045000 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Tue, 17 Oct 2023 15:49:53 +0200 Subject: [PATCH] Fix shortcut input for `EditorSceneTabs` --- editor/gui/editor_scene_tabs.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/gui/editor_scene_tabs.cpp b/editor/gui/editor_scene_tabs.cpp index a11d3e7b6ab4..1fe8eee6d782 100644 --- a/editor/gui/editor_scene_tabs.cpp +++ b/editor/gui/editor_scene_tabs.cpp @@ -341,6 +341,8 @@ void EditorSceneTabs::_bind_methods() { EditorSceneTabs::EditorSceneTabs() { singleton = this; + set_process_shortcut_input(true); + tabbar_panel = memnew(PanelContainer); add_child(tabbar_panel); tabbar_container = memnew(HBoxContainer);