From 2ea3cde2035e2a3115001cf703525c75fab84209 Mon Sep 17 00:00:00 2001 From: xxSeys1 Date: Sat, 26 Apr 2025 16:33:49 +0200 Subject: [PATCH] add search operator tooltip to prefab editor search bar somewhat of a follow up to #3300 --- Source/Editor/Windows/Assets/PrefabWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Editor/Windows/Assets/PrefabWindow.cs b/Source/Editor/Windows/Assets/PrefabWindow.cs index aa78c06a2..1b2ca48bc 100644 --- a/Source/Editor/Windows/Assets/PrefabWindow.cs +++ b/Source/Editor/Windows/Assets/PrefabWindow.cs @@ -160,6 +160,7 @@ namespace FlaxEditor.Windows.Assets AnchorPreset = AnchorPresets.HorizontalStretchMiddle, Parent = headerPanel, Bounds = new Rectangle(4, 4, headerPanel.Width - 8, 18), + TooltipText = "Search the prefab.\n\nYou can prefix your search with different search operators:\ns: -> Actor with script of type\na: -> Actor type\nc: -> Control type", }; _searchBox.TextChanged += OnSearchBoxTextChanged;