always sort the search results alphabetically

This commit is contained in:
xxSeys1
2025-04-10 22:12:47 +02:00
parent 4170699348
commit 0c1e0e48d4

View File

@@ -455,10 +455,10 @@ namespace FlaxEditor.Windows
var item = CreateControlItem(Utilities.Utils.GetPropertyNameUI(controlType.Name), controlType);
SearchFilterHighlights(item, text, ranges);
}
}
}
if (string.IsNullOrEmpty(filterText))
_groupSearch.SortChildren();
// Sort the search results alphabetically
_groupSearch.SortChildren();
_groupSearch.UnlockChildrenRecursive();
PerformLayout();