Added "Show in Explorer" besides "New Folder" to popup which appear when clicked anywhere on the files list (when no files under mouse cursor)
Small fix
This commit is contained in:
@@ -1448,12 +1448,13 @@ void FileSystemDock::_files_list_rmb_select(int p_item, const Vector2 &p_pos) {
|
||||
}
|
||||
|
||||
void FileSystemDock::_rmb_pressed(const Vector2 &p_pos) {
|
||||
folder_options->clear();
|
||||
folder_options->set_size(Size2(1, 1));
|
||||
file_options->clear();
|
||||
file_options->set_size(Size2(1, 1));
|
||||
|
||||
folder_options->add_item(TTR("New Folder.."), FOLDER_NEW_FOLDER);
|
||||
folder_options->set_position(files->get_global_position() + p_pos);
|
||||
folder_options->popup();
|
||||
file_options->add_item(TTR("New Folder.."), FILE_NEW_FOLDER);
|
||||
file_options->add_item(TTR("Show In File Manager"), FILE_SHOW_IN_EXPLORER);
|
||||
file_options->set_position(files->get_global_position() + p_pos);
|
||||
file_options->popup();
|
||||
}
|
||||
|
||||
void FileSystemDock::select_file(const String &p_file) {
|
||||
|
||||
Reference in New Issue
Block a user