From b6eecf8c8f355fe7118d2778e28789498a4d3e7c Mon Sep 17 00:00:00 2001 From: Bruno Alves de Faria Date: Tue, 17 Jul 2018 07:04:45 -0300 Subject: [PATCH] chore(hotkeys): Change hotkey command names for Next / Previous Image Viewport --- Packages/ohif-viewerbase/client/lib/hotkeyUtils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/ohif-viewerbase/client/lib/hotkeyUtils.js b/Packages/ohif-viewerbase/client/lib/hotkeyUtils.js index 8847e75bc..fdfd08157 100644 --- a/Packages/ohif-viewerbase/client/lib/hotkeyUtils.js +++ b/Packages/ohif-viewerbase/client/lib/hotkeyUtils.js @@ -193,11 +193,11 @@ Meteor.startup(function() { disabled: () => !canMoveDisplaySets(true) }, nextPanel: { - name: 'Next Panel', + name: 'Next Image Viewport', action: () => panelNavigation.loadNextActivePanel() }, previousPanel: { - name: 'Previous Panel', + name: 'Previous Image Viewport', action: () => panelNavigation.loadPreviousActivePanel() } }, true);