Skip to content

Commit

Permalink
capitalize keyboard shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Aug 25, 2017
1 parent fd0bb94 commit 2ca1160
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ui/analyse/src/actionMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export function view(ctrl: AnalyseCtrl): VNode {
h('h2', noarg('preferences')),
boolSetting(ctrl, {
name: 'Inline notation',
title: 'Keyboard: Shift+i',
title: 'Keyboard: Shift+I',
id: 'inline',
checked: ctrl.treeView.inline(),
change(v) {
Expand Down
6 changes: 3 additions & 3 deletions ui/analyse/src/keyboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,17 @@ export function view(ctrl: AnalyseCtrl): VNode {
row([k('↑'), or(), k('↓')], trans('keyGoToStartOrEnd')),
row([k('0'), or(), k('$')], trans('keyGoToStartOrEnd')),
row([k('shift'), k('←'), or(), k('shift'), k('→')], trans('keyEnterOrExitVariation')),
row([k('shift'), k('j'), or(), k('shift'), k('k')], trans('keyEnterOrExitVariation')),
row([k('shift'), k('J'), or(), k('shift'), k('K')], trans('keyEnterOrExitVariation')),
header('Analysis options'),
row([k('shift'), k('i')], 'Inline notation'),
row([k('shift'), k('I')], 'Inline notation'),
row([k('l')], 'Local computer analysis'),
row([k('a')], 'Computer arrows'),
row([k('space')], 'Play computer best move'),
row([k('x')], 'Show threat'),
row([k('e')], 'Opening/endgame explorer'),
row([k('f')], trans('flipBoard')),
row([k('/')], 'Focus chat'),
row([k('shift'), k('c')], trans('keyShowOrHideComments')),
row([k('shift'), k('C')], trans('keyShowOrHideComments')),
row([k('?')], 'Show this help dialog'),
ctrl.study ? [
header('Study actions'),
Expand Down

0 comments on commit 2ca1160

Please sign in to comment.