Cog/Preferences/Shortcuts.h
Christopher Snowhill 0de555c2fd Re-enable hotkeys and change preferences storage
Change hotkey storage system, hopefully this will fix the stability
issues that have been plaguing it for a while now.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2025-03-08 20:24:25 -08:00

22 lines
1 KiB
C

//
// Shortcuts.h
// Preferences
//
// Created by Dzmitry Neviadomski on 25.01.21.
//
static NSString *const CogPlayShortcutKey = @"cogPlayShortcutV2";
static NSString *const CogNextShortcutKey = @"cogNextShortcutV2";
static NSString *const CogPrevShortcutKey = @"cogPrevShortcutV2";
static NSString *const CogSpamShortcutKey = @"cogSpamShortcutV2";
static NSString *const CogFadeShortcutKey = @"cogFadeShortcutV2";
static NSString *const CogSeekBackwardShortcutKey = @"cogSeekBackwardShortcutV2";
static NSString *const CogSeekForwardShortcutKey = @"cogSeekForwardShortcutV2";
static NSString *const CogPlayShortcutKeyV1 = @"cogPlayShortcut";
static NSString *const CogNextShortcutKeyV1 = @"cogNextShortcut";
static NSString *const CogPrevShortcutKeyV1 = @"cogPrevShortcut";
static NSString *const CogSpamShortcutKeyV1 = @"cogSpamShortcut";
static NSString *const CogFadeShortcutKeyV1 = @"cogFadeShortcut";
static NSString *const CogSeekBackwardShortcutKeyV1 = @"cogSeekBackwardShortcut";
static NSString *const CogSeekForwardShortcutKeyV1 = @"cogSeekForwardShortcut";