diff --git a/Mystify/App.axaml.cs b/Mystify/App.axaml.cs index 5304915..e6803c4 100644 --- a/Mystify/App.axaml.cs +++ b/Mystify/App.axaml.cs @@ -41,9 +41,11 @@ namespace Mystify ContextMenu notifyIconContextMenu = new() { - Items = new List + Items = new List { - new() {Header = "Close", Command = ReactiveCommand.Create(() => desktopStyleApplicationLifetime.Shutdown())} + new MenuItem {Header = "Open Mystify", Command = ReactiveCommand.Create(() => _mainWindow?.Show())}, + new Separator(), + new MenuItem {Header = "Close", Command = ReactiveCommand.Create(() => desktopStyleApplicationLifetime.Shutdown())} } };