You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Fix extra separator in filesystem dock right click menu
Re-order add_separator calls to stop adding an extra separator if no item was selected. It is possible for no items to be selected by right clicking the ".." item.
This commit is contained in:
@@ -1417,18 +1417,18 @@ void FileSystemDock::_files_list_rmb_select(int p_item, const Vector2 &p_pos) {
|
||||
if (all_files_scenes) {
|
||||
file_options->add_item(TTR("Instance"), FILE_INSTANCE);
|
||||
}
|
||||
file_options->add_separator();
|
||||
|
||||
if (filenames.size() == 1) {
|
||||
file_options->add_separator();
|
||||
file_options->add_item(TTR("Edit Dependencies.."), FILE_DEPENDENCIES);
|
||||
file_options->add_item(TTR("View Owners.."), FILE_OWNERS);
|
||||
file_options->add_separator();
|
||||
}
|
||||
} else if (all_folders && foldernames.size() > 0) {
|
||||
file_options->add_item(TTR("Open"), FILE_OPEN);
|
||||
file_options->add_separator();
|
||||
}
|
||||
|
||||
file_options->add_separator();
|
||||
|
||||
int num_items = filenames.size() + foldernames.size();
|
||||
if (num_items >= 1) {
|
||||
if (num_items == 1) {
|
||||
|
||||
Reference in New Issue
Block a user