Skip to content

Commit bec3856

Browse files
committed
Merge pull request #105997 from nklbdev/fix-file-system-dock-add-missing-shortcuts-from-tree-to-file-list
Fix added missing shortcuts from tree to file list
2 parents a8ece29 + 767e037 commit bec3856

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

editor/filesystem_dock.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3729,14 +3729,20 @@ void FileSystemDock::_file_list_gui_input(Ref<InputEvent> p_event) {
37293729
_file_list_rmb_option(FILE_MENU_COPY_PATH);
37303730
} else if (ED_IS_SHORTCUT("filesystem_dock/copy_absolute_path", p_event)) {
37313731
_file_list_rmb_option(FILE_MENU_COPY_ABSOLUTE_PATH);
3732+
} else if (ED_IS_SHORTCUT("filesystem_dock/copy_uid", p_event)) {
3733+
_file_list_rmb_option(FILE_MENU_COPY_UID);
37323734
} else if (ED_IS_SHORTCUT("filesystem_dock/delete", p_event)) {
37333735
_file_list_rmb_option(FILE_MENU_REMOVE);
37343736
} else if (ED_IS_SHORTCUT("filesystem_dock/rename", p_event)) {
37353737
_file_list_rmb_option(FILE_MENU_RENAME);
37363738
} else if (ED_IS_SHORTCUT("filesystem_dock/show_in_explorer", p_event)) {
37373739
_file_list_rmb_option(FILE_MENU_SHOW_IN_EXPLORER);
3740+
} else if (ED_IS_SHORTCUT("filesystem_dock/open_in_external_program", p_event)) {
3741+
_file_list_rmb_option(FILE_MENU_OPEN_EXTERNAL);
37383742
} else if (ED_IS_SHORTCUT("filesystem_dock/open_in_terminal", p_event)) {
37393743
_file_list_rmb_option(FILE_MENU_OPEN_IN_TERMINAL);
3744+
} else if (ED_IS_SHORTCUT("file_dialog/focus_path", p_event)) {
3745+
focus_on_path();
37403746
} else if (ED_IS_SHORTCUT("editor/open_search", p_event)) {
37413747
focus_on_filter();
37423748
} else {

0 commit comments

Comments
 (0)