We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76e2b79 commit b503906Copy full SHA for b503906
SRC/Aura_OS/Properties/VersionInfo.cs
@@ -2,6 +2,6 @@ namespace Aura_OS
2
{
3
public class VersionInfo
4
5
- public static string revision = "280620231447";
+ public static string revision = "280620231450";
6
}
7
SRC/Aura_OS/System/Application/App.cs
@@ -69,7 +69,10 @@ public override void Update()
69
70
if (!HasWindowMoving && Window.Close.IsInside((int)MouseManager.X, (int)MouseManager.Y))
71
72
- Kernel.WindowManager.Focused = null;
+ if (Kernel.WindowManager.Focused == this)
73
+ {
74
+ Kernel.WindowManager.Focused = null;
75
+ }
76
Stop();
77
return;
78
0 commit comments