@@ -55,7 +55,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSPopoverDelegate {
55
55
56
56
popover = NSPopover ( )
57
57
popover. behavior = . transient // Closes when clicking outside
58
- popover. contentSize = NSSize ( width: 500 , height: 520 )
58
+ popover. contentSize = NSSize ( width: 500 , height: 500 )
59
59
popover. contentViewController = NSHostingController (
60
60
rootView: TrayMenuView (
61
61
viewModel: CardGridViewModel ( appState: AppStateManager . shared)
@@ -214,14 +214,14 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSPopoverDelegate {
214
214
let contentView = ContentView ( )
215
215
. environmentObject ( AppStateManager . shared)
216
216
. environmentObject ( Preferences ( ) )
217
- . frame ( minWidth: 1500 , minHeight: 950 )
217
+ . frame ( minWidth: 1100 , minHeight: 650 )
218
218
219
219
let hostingController = NSHostingController ( rootView: contentView)
220
220
221
221
let window = NSWindow ( contentViewController: hostingController)
222
- window. setContentSize ( NSSize ( width: 1500 , height: 950 ) )
222
+ window. setContentSize ( NSSize ( width: 1520 , height: 960 ) )
223
223
window. styleMask = [ . titled, . closable, . resizable]
224
- window. minSize = NSSize ( width: 1500 , height: 950 )
224
+ window. minSize = NSSize ( width: 1100 , height: 650 )
225
225
window. title = " "
226
226
window. isReleasedWhenClosed = false
227
227
window. backgroundColor = . clear
0 commit comments