From 6de06ac8e1025c77e67c67959c76367d099c0931 Mon Sep 17 00:00:00 2001 From: Tommaso Negri Date: Sun, 12 Jul 2026 15:12:13 +0200 Subject: [PATCH] respect the actual window height --- Sources/phbar/Views/BarView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/phbar/Views/BarView.swift b/Sources/phbar/Views/BarView.swift index 4631d67..6ca7c0a 100644 --- a/Sources/phbar/Views/BarView.swift +++ b/Sources/phbar/Views/BarView.swift @@ -31,7 +31,7 @@ struct BarView: View { } } } - .frame(height: 30) + .frame(height: bar.window.height ?? 30) .ignoresSafeArea() .environmentObject(bar) }