From 38ace450d260727a61b7106a5af1a8bfd1ba2d1e Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 31 Dec 2018 14:21:44 -0800 Subject: [PATCH] Reenable arrow key navigation --- src/FocusedSkin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FocusedSkin.js b/src/FocusedSkin.js index 400c01f7..95fd6db0 100644 --- a/src/FocusedSkin.js +++ b/src/FocusedSkin.js @@ -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); } }) );