From 952a9620a998add4fbdfd336ca2f6495e280b700 Mon Sep 17 00:00:00 2001 From: psavarmattas Date: Fri, 14 Aug 2026 01:10:46 +0100 Subject: [PATCH] fix(app): use .unified instead of .unifiedCompact toolbar style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .unifiedCompact is a genuinely shorter toolbar height, not "unified minus the title" — that's what made the toolbar look slim and likely squeezed the custom navigation item too. .unified(showsTitle: false) hides the native title without changing the toolbar's height. --- Outpost/OutpostApp.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Outpost/OutpostApp.swift b/Outpost/OutpostApp.swift index 38fd726..7247a39 100644 --- a/Outpost/OutpostApp.swift +++ b/Outpost/OutpostApp.swift @@ -40,7 +40,9 @@ struct OutpostApp: App { // the same collection/document name, it visibly duplicated, with the // system back button sandwiched between the two. `.navigationTitle` // stays set (for the Window menu / Mission Control), just hidden here. - .windowToolbarStyle(.unifiedCompact(showsTitle: false)) + // `.unified` (not `.unifiedCompact`) keeps the toolbar at normal + // height — compact is a shorter style, not merely "unified minus title". + .windowToolbarStyle(.unified(showsTitle: false)) .commands { CommandGroup(replacing: .appInfo) { Button("About Outpost") {