Fix FileSystem Dock tooltips showing in empty space

This commit is contained in:
mxtherfxcker
2025-12-21 17:45:34 +03:00
committed by Rémi Verschelde
parent a8ebeb4dda
commit 2421a716a4

View File

@@ -77,7 +77,7 @@ Control *FileSystemTree::make_custom_tooltip(const String &p_text) const {
}
Control *FileSystemList::make_custom_tooltip(const String &p_text) const {
int idx = get_item_at_position(get_local_mouse_position());
int idx = get_item_at_position(get_local_mouse_position(), true);
if (idx == -1) {
return nullptr;
}