Fix macOS bug where the navigation title interferes with back button

This commit is contained in:
2025-05-27 19:41:34 -04:00
parent 9e4baf1517
commit 4e8907d52d
2 changed files with 50 additions and 47 deletions

View File

@@ -10,11 +10,11 @@ import SwiftUI
@main
struct NostashApp: App {
var body: some Scene {
WindowGroup("Nostash") {
WindowGroup {
MainView()
}
#if macOS
#if os(macOS)
.defaultSize(width: 400, height: 500)
#endif
#endif
}
}