Skip to content

Commit

Permalink
🐛 Fix windows showing on logout
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbreiz committed Mar 3, 2024
1 parent 6072c49 commit 7e2689a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion SRC/Aura_OS/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ namespace Aura_OS
{
public class VersionInfo
{
public static string revision = "030320242340";
public static string revision = "030320242345";
}
}
7 changes: 1 addition & 6 deletions SRC/Aura_OS/System/Graphics/UI/GUI/LoginScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,6 @@ public override void Draw()

public void Hide()
{
foreach (Application app in Explorer.WindowManager.Applications)
{
app.Visible = true;
}

Kernel.MouseManager.FocusedComponent = _username;

Visible = false;
Expand All @@ -88,7 +83,7 @@ public void Show()
{
foreach (Application app in Explorer.WindowManager.Applications)
{
app.Visible = false;
app.Window.Minimize.Click();
}

Visible = true;
Expand Down

0 comments on commit 7e2689a

Please sign in to comment.