macOS 一些优化 (#6596)

* [macOS] hide icon in Dock

* [macOS] fix: close button not work

* [macOS] fix: cant directly show window when click `Show or hide the main window` on minimized
This commit is contained in:
ShiinaRinne
2025-01-29 19:26:40 +08:00
committed by GitHub
parent e674a025d8
commit f71125d8f3
2 changed files with 26 additions and 24 deletions

View File

@@ -52,5 +52,6 @@ internal class Program
//.WithInterFont()
.WithFontByDefault()
.LogToTrace()
.UseReactiveUI();
.UseReactiveUI()
.With(new MacOSPlatformOptions { ShowInDock = false});
}