diff --git a/Gaze/Views/Containers/OnboardingContainerView.swift b/Gaze/Views/Containers/OnboardingContainerView.swift index b07e5f7..cad2db9 100644 --- a/Gaze/Views/Containers/OnboardingContainerView.swift +++ b/Gaze/Views/Containers/OnboardingContainerView.swift @@ -123,20 +123,25 @@ struct OnboardingContainerView: View { } } } - .frame( - minWidth: 1000, - minHeight: 700 - ) + #if APPSTORE + .frame( + minWidth: 1000, + minHeight: 700 + ) + #else + .frame( + minWidth: 1000, + minHeight: 900 + ) + #endif } private func completeOnboarding() { // Mark onboarding as complete - settings are already being updated in real-time settingsManager.settings.hasCompletedOnboarding = true - // Close window with standard macOS animation dismiss() - // After a brief delay, trigger the menu bar extra to open DispatchQueue.main.asyncAfter(deadline: .now()) { if let menuBarWindow = NSApp.windows.first(where: { $0.className.contains("MenuBarExtra") || $0.className.contains("StatusBar") diff --git a/Gaze/Views/Containers/SettingsWindowView.swift b/Gaze/Views/Containers/SettingsWindowView.swift index ea18bee..9bf29b2 100644 --- a/Gaze/Views/Containers/SettingsWindowView.swift +++ b/Gaze/Views/Containers/SettingsWindowView.swift @@ -78,10 +78,17 @@ struct SettingsWindowView: View { } .padding() } - .frame( - minWidth: 750, - minHeight: 700 - ) + #if APPSTORE + .frame( + minWidth: 750, + minHeight: 700 + ) + #else + .frame( + minWidth: 750, + minHeight: 900 + ) + #endif .onReceive( NotificationCenter.default.publisher(for: Notification.Name("SwitchToSettingsTab")) ) { notification in diff --git a/switch_to b/switch_to index 7a943bf..3e99043 100755 --- a/switch_to +++ b/switch_to @@ -454,7 +454,7 @@ switch_to_self() { if ! has_sparkle_package; then echo "" - print_warning "Remember to add Sparkle package in Xcode (see instructions above)" + print_warning "⚠️Sparkle not successfully added!" fi }