mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 00:59:29 +00:00
Esc should not be able to toggle Lamma mode
This commit is contained in:
parent
1160d0b1ab
commit
af920107c0
1 changed files with 3 additions and 3 deletions
|
|
@ -120,9 +120,9 @@ export default function(winamp, { dispatch }) {
|
|||
if (e.keyCode !== 27) {
|
||||
keylog.push(e.keyCode);
|
||||
keylog = keylog.slice(-8);
|
||||
}
|
||||
if (arraysAreEqual(keylog, trigger)) {
|
||||
dispatch({ type: TOGGLE_LLAMA_MODE });
|
||||
if (arraysAreEqual(keylog, trigger)) {
|
||||
dispatch({ type: TOGGLE_LLAMA_MODE });
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue