actions: Keep consistent letters case

This commit is contained in:
Rafał Dzięgiel
2021-09-14 13:06:44 +02:00
parent 5442b0b70a
commit 636098182b

View File

@@ -18,13 +18,13 @@ var actions = {
prev_track: ['<Ctrl>Left'], prev_track: ['<Ctrl>Left'],
volume_up: ['Up'], volume_up: ['Up'],
volume_down: ['Down'], volume_down: ['Down'],
mute: ['<Ctrl>m'], mute: ['<Ctrl>M'],
toggle_play: ['space'], toggle_play: ['space'],
change_repeat: ['<Ctrl>r'], change_repeat: ['<Ctrl>R'],
reveal_controls: ['Return'], reveal_controls: ['Return'],
toggle_fullscreen: ['F11', 'f'], toggle_fullscreen: ['F11', 'F'],
leave_fullscreen: ['Escape'], leave_fullscreen: ['Escape'],
quit: ['<Ctrl>q', 'q'], quit: ['<Ctrl>Q', 'Q'],
}; };
function handleAction(action, window) function handleAction(action, window)