Skip to content

Commit 76e2b79

Browse files
committed
Disable focus when window closed
1 parent ad72c27 commit 76e2b79

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

SRC/Aura_Boot/Aura_Boot.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<EnableGDB>False</EnableGDB>
2222
<StartCosmosGDB>False</StartCosmosGDB>
2323
<VBEResolution>800x600x32</VBEResolution>
24+
<OptimizationLevel>3</OptimizationLevel>
2425
</PropertyGroup>
2526

2627
<ItemGroup>

SRC/Aura_OS/Properties/VersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace Aura_OS
22
{
33
public class VersionInfo
44
{
5-
public static string revision = "280620231423";
5+
public static string revision = "280620231447";
66
}
77
}

SRC/Aura_OS/System/Application/App.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ public override void Update()
6969

7070
if (!HasWindowMoving && Window.Close.IsInside((int)MouseManager.X, (int)MouseManager.Y))
7171
{
72+
Kernel.WindowManager.Focused = null;
7273
Stop();
7374
return;
7475
}

0 commit comments

Comments
 (0)