Skip to content

Commit

Permalink
for pull req, return Left & Right to Prev/Next Variation
Browse files Browse the repository at this point in the history
  • Loading branch information
petermao authored and apetresc committed Jan 4, 2024
1 parent b025499 commit f94471a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,22 +402,22 @@ exports.get = function(props = {}) {
},
{
label: i18n.t('menu.navigation', 'Go to Previous &Variation'),
accelerator: 'Shift+Left',
accelerator: 'Left',
click: () => sabaki.goToSiblingVariation(-1)
},
{
label: i18n.t('menu.navigation', 'Go to Next Va&riation'),
accelerator: 'Shift+Right',
accelerator: 'Right',
click: () => sabaki.goToSiblingVariation(1)
},
{
label: i18n.t('menu.navigation', '&Decrement Downstream Variation'),
accelerator: 'Left',
accelerator: 'Shift+Left',
click: () => sabaki.changeDownstreamVariation(-1)
},
{
label: i18n.t('menu.navigation', '&Increment Downstream Variation'),
accelerator: 'Right',
accelerator: 'Shift+Right',
click: () => sabaki.changeDownstreamVariation(1)
},
{type: 'separator'},
Expand Down

0 comments on commit f94471a

Please sign in to comment.