1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

[Editor] Don't show popup when clicking empty in Favorites

This commit is contained in:
A Thousand Ships
2024-09-04 17:37:43 +02:00
parent 906a4e9db9
commit d2a8b330d8

View File

@@ -3418,6 +3418,11 @@ void FileSystemDock::_file_list_empty_clicked(const Vector2 &p_pos, MouseButton
current_path = current_path_line_edit->get_text(); current_path = current_path_line_edit->get_text();
// Favorites isn't a directory so don't show menu.
if (current_path == "Favorites") {
return;
}
file_list_popup->clear(); file_list_popup->clear();
file_list_popup->reset_size(); file_list_popup->reset_size();