From 4f8d7cae2601343d6221ec95485fc6812c9a22d8 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 30 Aug 2023 20:11:21 +0200 Subject: Add Ctrl + L / Cmd + Shift + G shortcut to focus path bar in FileDialog This also tweaks EditorFileDialog to use the same shortcut, while making it select the path text after focusing (like in most file managers). Ctrl + L / Cmd + Shift + G can also now be used to focus on the property name in the project settings editor, as well in the Input Map, Autoload, Shader Globals and Global Groups tabs. --- editor/project_settings_editor.cpp | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'editor/project_settings_editor.cpp') diff --git a/editor/project_settings_editor.cpp b/editor/project_settings_editor.cpp index b7f28068b7..57fbbecb60 100644 --- a/editor/project_settings_editor.cpp +++ b/editor/project_settings_editor.cpp @@ -256,11 +256,16 @@ void ProjectSettingsEditor::shortcut_input(const Ref &p_event) { handled = true; } - if (k->is_match(InputEventKey::create_reference(KeyModifierMask::CMD_OR_CTRL | Key::F))) { + if (ED_IS_SHORTCUT("editor/open_search", p_event)) { _focus_current_search_box(); handled = true; } + if (ED_IS_SHORTCUT("file_dialog/focus_path", p_event)) { + _focus_current_path_box(); + handled = true; + } + if (handled) { set_input_as_handled(); } @@ -347,6 +352,27 @@ void ProjectSettingsEditor::_focus_current_search_box() { } } +void ProjectSettingsEditor::_focus_current_path_box() { + Control *tab = tab_container->get_current_tab_control(); + LineEdit *current_path_box = nullptr; + if (tab == general_editor) { + current_path_box = property_box; + } else if (tab == action_map_editor) { + current_path_box = action_map_editor->get_path_box(); + } else if (tab == autoload_settings) { + current_path_box = autoload_settings->get_path_box(); + } else if (tab == shaders_global_shader_uniforms_editor) { + current_path_box = shaders_global_shader_uniforms_editor->get_name_box(); + } else if (tab == group_settings) { + current_path_box = group_settings->get_name_box(); + } + + if (current_path_box) { + current_path_box->grab_focus(); + current_path_box->select_all(); + } +} + void ProjectSettingsEditor::_editor_restart() { ProjectSettings::get_singleton()->save(); EditorNode::get_singleton()->save_all_scenes(); -- cgit v1.2.3