diff --git a/src/components/KeyboardInteraction/index.ts b/src/components/KeyboardInteraction/index.ts index 7ba7b64..36d7351 100644 --- a/src/components/KeyboardInteraction/index.ts +++ b/src/components/KeyboardInteraction/index.ts @@ -32,12 +32,16 @@ class KeyboardInteractionInner extends Component { switch (e.code) { case 'ArrowLeft': case 'KeyH': - this.props.previousSong(); + if (!e.altKey){ + this.props.previousSong(); + } break; case 'ArrowRight': case 'KeyL': - this.props.nextSong(); + if (!e.altKey){ + this.props.nextSong(); + } break; case 'Space':