Skip to content

Commit

Permalink
fix: use ctrl in key bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenmoya committed Apr 15, 2020
1 parent a029292 commit 151aa20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ export default () => {

useKeyBindings({
Escape: { fn: hideOverlay },
KeyI: { fn: showOverlay(OVERLAY_STATE.INFO) },
KeyT: { fn: changeTheme },
KeyI: { ctrl: true, fn: showOverlay(OVERLAY_STATE.INFO) },
KeyT: { ctrl: true, fn: changeTheme },
KeyS: { ctrl: true, fn: showOverlay(OVERLAY_STATE.PREVIEW) }
})

Expand Down

0 comments on commit 151aa20

Please sign in to comment.