Skip to content

Commit

Permalink
Final touches to the start men fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ekeleze committed Jan 23, 2024
1 parent ee4aad7 commit f52c926
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions GoOS/GUI/Apps/StartMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,32 +91,32 @@ private void AddSideButtons()
AddSideButton("Apps", () =>
{
WindowManager.AddWindow(new AppManager());
CloseStartMenu();
Dispose();
});
AddSideButton("GoStore", () =>
{
WindowManager.AddWindow(new GoStore.MainFrame());
CloseStartMenu();
Dispose();
});
/*AddSideButton("Gosplorer", () =>
{
WindowManager.AddWindow(new GosplorerOld());
CloseStartMenu();
Dispose();
});*/
AddSideButton("Gosplorer", () =>
{
WindowManager.AddWindow(new Gosplorer.MainFrame());
CloseStartMenu();
Dispose();
});
AddSideButton("GoWeb", () =>
{
WindowManager.AddWindow(new GoWeb.GoWebWindow());
CloseStartMenu();
Dispose();
});
AddSideButton("Settings", () =>
{
Dialogue.Show("GoOS", "This feature is not yet implemented.");
CloseStartMenu();
Dispose();
});
}

Expand Down Expand Up @@ -203,7 +203,7 @@ private void CloseStartMenu()
{
if (Visible)
{
CloseStartMenu();
Dispose();
}
else
{
Expand Down

1 comment on commit f52c926

@GoldenretriverYT
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

start men 🤨

Please sign in to comment.