diff options
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r-- | editor/filesystem_dock.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 976ccab99e..1c43c29c33 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -2281,6 +2281,10 @@ void FileSystemDock::remove_resource_tooltip_plugin(const Ref<EditorResourceTool } Control *FileSystemDock::create_tooltip_for_path(const String &p_path) const { + if (p_path == "Favorites") { + // No tooltip for the "Favorites" group. + return nullptr; + } if (DirAccess::exists(p_path)) { // No tooltip for directory. return nullptr; |