Skip to content

Commit

Permalink
Fix scene dock search losing its default tooltip after typing an inva…
Browse files Browse the repository at this point in the history
…lid filter
  • Loading branch information
YeldhamDev committed Dec 17, 2023
1 parent 2d0ee20 commit 589b7b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/scene_tree_dock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3330,7 +3330,7 @@ void SceneTreeDock::_filter_changed(const String &p_filter) {
filter->set_tooltip_text(warning);
} else {
filter->remove_theme_icon_override(SNAME("clear"));
filter->set_tooltip_text("");
filter->set_tooltip_text(TTR("Filter nodes by entering a part of their name, type (if prefixed with \"type:\" or \"t:\")\nor group (if prefixed with \"group:\" or \"g:\"). Filtering is case-insensitive."));
}
}

Expand Down

0 comments on commit 589b7b0

Please sign in to comment.