Skip to content

Commit

Permalink
remove puzzle blindfold hotkey
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Oct 6, 2024
1 parent eab7aad commit 0821429
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ui/puzzle/src/keyboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ export default (ctrl: PuzzleCtrl) =>
.bind('z', () => pubsub.emit('zen'))
.bind('?', () => ctrl.keyboardHelp(!ctrl.keyboardHelp()))
.bind('f', ctrl.flip)
.bind('n', ctrl.nextPuzzle)
.bind('B', () => ctrl.blindfold(!ctrl.blindfold()));
.bind('n', ctrl.nextPuzzle);

export const view = (ctrl: PuzzleCtrl) =>
snabDialog({
Expand Down

0 comments on commit 0821429

Please sign in to comment.