From 7eab3fe5b367575b474a83f2ccddb6fc66e9766c Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Mon, 12 Dec 2022 18:18:48 -0600 Subject: [PATCH] Added back sorting sub project directories. --- 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 bb179f9e9..3b1d0a11f 100644 --- a/Source/Editor/Windows/ContentWindow.cs +++ b/Source/Editor/Windows/ContentWindow.cs @@ -841,6 +841,7 @@ namespace FlaxEditor.Windows _root.AddChild(Editor.ContentDatabase.Game); foreach (var project in Editor.ContentDatabase.Projects) { + project.SortChildrenRecursive(); if (project == Editor.ContentDatabase.Game || project == Editor.ContentDatabase.Engine) continue; _root.AddChild(project);