Reenable arrow key navigation

This commit is contained in:
Jordan Eldredge 2018-12-31 14:21:44 -08:00
parent 2997b3c46b
commit 38ace450d2

View file

@ -68,9 +68,9 @@ class FocusedSkin extends React.Component {
this._disposable.add(
fromEvent(window.document, "keydown").subscribe(e => {
if (e.key === "ArrowRight") {
// this.props.selectRelativeSkin(1);
this.props.selectRelativeSkin(1);
} else if (e.key === "ArrowLeft") {
// this.props.selectRelativeSkin(-1);
this.props.selectRelativeSkin(-1);
}
})
);