chore(hotkeys): Change hotkey command names for Next / Previous Image Viewport

This commit is contained in:
Bruno Alves de Faria 2018-07-17 07:04:45 -03:00 committed by Erik Ziegler
parent eae9df2c3f
commit b6eecf8c8f

View File

@ -193,11 +193,11 @@ Meteor.startup(function() {
disabled: () => !canMoveDisplaySets(true) disabled: () => !canMoveDisplaySets(true)
}, },
nextPanel: { nextPanel: {
name: 'Next Panel', name: 'Next Image Viewport',
action: () => panelNavigation.loadNextActivePanel() action: () => panelNavigation.loadNextActivePanel()
}, },
previousPanel: { previousPanel: {
name: 'Previous Panel', name: 'Previous Image Viewport',
action: () => panelNavigation.loadPreviousActivePanel() action: () => panelNavigation.loadPreviousActivePanel()
} }
}, true); }, true);