diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-09-04 17:37:43 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-17 08:57:43 +0200 |
commit | 64cbde426f0f5fd667bdc9ee1abad1f15c4a7279 (patch) | |
tree | a75185277b03ebc38f4ae84bcbcf05e68ae7f351 | |
parent | b1c1c402509dd1f259f59a4e1e5840bb9f82f522 (diff) | |
download | redot-engine-64cbde426f0f5fd667bdc9ee1abad1f15c4a7279.tar.gz |
[Editor] Don't show popup when clicking empty in Favorites
(cherry picked from commit d2a8b330d881ca50fa238805dee9a1e4b71fb9b0)
-rw-r--r-- | editor/filesystem_dock.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index a9de8e3bc5..535ea553e2 100644 --- a/editor/filesystem_dock.cpp +++ b/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(); |