From d23d54e20848fe62f1cefb05e4654af28a1f41c6 Mon Sep 17 00:00:00 2001 From: Beingpax Date: Thu, 7 Aug 2025 00:53:55 +0545 Subject: [PATCH] Update mini recorder animation --- VoiceInk/Views/Recorder/MiniRecorderView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VoiceInk/Views/Recorder/MiniRecorderView.swift b/VoiceInk/Views/Recorder/MiniRecorderView.swift index 0482ec6..6af6868 100644 --- a/VoiceInk/Views/Recorder/MiniRecorderView.swift +++ b/VoiceInk/Views/Recorder/MiniRecorderView.swift @@ -49,8 +49,8 @@ struct MiniRecorderView: View { if windowManager.isExpanded { // Left button zone - only exists when expanded RecorderPromptButton(showPopover: $showEnhancementPromptPopover) + .padding(.leading, 6) .transition(.scale(scale: 0.5).combined(with: .opacity)) - .animation(.easeInOut(duration: 0.25), value: windowManager.isExpanded) Spacer() } @@ -64,8 +64,8 @@ struct MiniRecorderView: View { // Right button zone - only exists when expanded RecorderPowerModeButton(showPopover: $showPowerModePopover) + .padding(.trailing, 6) .transition(.scale(scale: 0.5).combined(with: .opacity)) - .animation(.easeInOut(duration: 0.25), value: windowManager.isExpanded) } } .padding(.vertical, 8)