diff --git a/VoiceInk/HotkeyManager.swift b/VoiceInk/HotkeyManager.swift index 63834f1..4bf891c 100644 --- a/VoiceInk/HotkeyManager.swift +++ b/VoiceInk/HotkeyManager.swift @@ -122,7 +122,7 @@ class HotkeyManager: ObservableObject { self.miniRecorderShortcutManager = MiniRecorderShortcutManager(whisperState: whisperState) if KeyboardShortcuts.getShortcut(for: .pasteLastTranscription) == nil { - let defaultPasteShortcut = KeyboardShortcuts.Shortcut(.v, modifiers: [.control]) + let defaultPasteShortcut = KeyboardShortcuts.Shortcut(.v, modifiers: [.command, .option]) KeyboardShortcuts.setShortcut(defaultPasteShortcut, for: .pasteLastTranscription) }