From 92a5432d224f105e5f526a47656dbddd82fc3e60 Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Sat, 2 Sep 2023 13:13:34 -0500 Subject: [PATCH] Sort plugin projects in content tree. --- Source/Editor/Windows/ContentWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Editor/Windows/ContentWindow.cs b/Source/Editor/Windows/ContentWindow.cs index b1f04c8f5..9d782b13b 100644 --- a/Source/Editor/Windows/ContentWindow.cs +++ b/Source/Editor/Windows/ContentWindow.cs @@ -931,6 +931,7 @@ namespace FlaxEditor.Windows // Add game project on top, plugins in the middle and engine at bottom _root.AddChild(Editor.ContentDatabase.Game); + Editor.ContentDatabase.Projects.Sort(); foreach (var project in Editor.ContentDatabase.Projects) { project.SortChildrenRecursive();