We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef2b200 commit 0b5ea7bCopy full SHA for 0b5ea7b
RuntimeUnityEditor.Core/Windows/Taskbar.cs
@@ -96,7 +96,7 @@ private void DrawTaskbar(int id)
96
foreach (var window in _orderedFeatures.OfType<IWindow>())
97
window.WindowRect = new Rect(-1000, -1000, 0, 0);
98
99
- foreach (var window in _orderedFeatures.OfType<IWindow>().OrderBy(x => x.Title))
+ foreach (var window in _orderedFeatures.OfType<IWindow>().OrderByDescending(x => x.Enabled).ThenBy(x => x.Title))
100
{
101
// Ensure that all title bars are visible
102
GUI.BringWindowToFront(window.WindowId);
0 commit comments