From 53019991f7291edb74abffe03ad85256933d733a Mon Sep 17 00:00:00 2001 From: Lukas <134181853+bo2themax@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:30:17 +0200 Subject: [PATCH] macOS: fix the arrow alignment of the secure input popover --- macos/Sources/Features/Secure Input/SecureInputOverlay.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macos/Sources/Features/Secure Input/SecureInputOverlay.swift b/macos/Sources/Features/Secure Input/SecureInputOverlay.swift index ebf5b5138..d616d74be 100644 --- a/macos/Sources/Features/Secure Input/SecureInputOverlay.swift +++ b/macos/Sources/Features/Secure Input/SecureInputOverlay.swift @@ -54,8 +54,6 @@ struct SecureInputOverlay: View { isPopover = true } .backport.pointerStyle(.link) - .padding(.top, 10) - .padding(.trailing, 10) .popover(isPresented: $isPopover, arrowEdge: .bottom) { Text(""" Secure Input is active. Secure Input is a macOS security feature that @@ -65,6 +63,8 @@ struct SecureInputOverlay: View { """) .padding(.all) } + .padding(.top, 10) + .padding(.trailing, 10) } Spacer()