File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments