From f9a2b63ab40e6e15cda6ee2f559bb846ad1f7d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Orzech?= Date: Sun, 18 Jan 2026 21:43:44 +0000 Subject: [PATCH] fix: Resolve Credits view height being cut off in MenuBarExtra - Remove Spacer() that was compressing ScrollView - Set fixed height (480) to ensure all sections are visible --- MacTorn/MacTorn/Views/CreditsView.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/MacTorn/MacTorn/Views/CreditsView.swift b/MacTorn/MacTorn/Views/CreditsView.swift index 0614c3c..de0d5ad 100644 --- a/MacTorn/MacTorn/Views/CreditsView.swift +++ b/MacTorn/MacTorn/Views/CreditsView.swift @@ -63,8 +63,6 @@ struct CreditsView: View { .padding(.horizontal) } - Spacer() - // Back Button Button { showCredits = false @@ -79,7 +77,7 @@ struct CreditsView: View { .foregroundColor(.accentColor) } .padding() - .frame(width: 320) + .frame(width: 320, height: 480) } // MARK: - Developer Section