From a6426d0ac52abfaddacb0756c91e1c83bab9301b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 8 Dec 2025 23:14:00 +0100 Subject: [PATCH] macos: swap bubble shadow for 1px border --- apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift b/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift index f8055947c..da94791fe 100644 --- a/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift +++ b/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift @@ -383,8 +383,10 @@ private struct VoiceWakeOverlayView: View { .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading) .background( RoundedRectangle(cornerRadius: 12, style: .continuous) - .fill(.regularMaterial) - .shadow(color: Color.black.opacity(0.22), radius: 14, x: 0, y: 4)) + .strokeBorder(Color.white.opacity(0.12), lineWidth: 1) + .background( + RoundedRectangle(cornerRadius: 12, style: .continuous) + .fill(.regularMaterial))) .onHover { self.isHovering = $0 } // Close button rendered above and outside the clipped bubble