From fef9a07aa9887beafafeb7de3bc4346cf4df328f Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Mon, 20 Apr 2026 22:24:58 +0200 Subject: [PATCH] Set minimum window size on macOS --- Yattee/YatteeApp.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Yattee/YatteeApp.swift b/Yattee/YatteeApp.swift index 17bc3d70..1cc8ae6c 100644 --- a/Yattee/YatteeApp.swift +++ b/Yattee/YatteeApp.swift @@ -67,6 +67,7 @@ struct YatteeApp: App { .tint(appEnvironment.settingsManager.accentColor.color) #endif #if os(macOS) + .frame(minWidth: 800, minHeight: 500) // Required on the view to prevent new windows on URL open .handlesExternalEvents(preferring: ["*"], allowing: ["*"]) #endif