Explorar o código

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

(cherry picked from commit d2a8b330d881ca50fa238805dee9a1e4b71fb9b0)
A Thousand Ships hai 1 ano
pai
achega
64cbde426f
Modificáronse 1 ficheiros con 5 adicións e 0 borrados
  1. 5 0
      editor/filesystem_dock.cpp

+ 5 - 0
editor/filesystem_dock.cpp

@@ -3410,6 +3410,11 @@ void FileSystemDock::_file_list_empty_clicked(const Vector2 &p_pos, MouseButton
 
 	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->reset_size();