From ec89610ae49fcc8b6ded0175682f2f347159c110 Mon Sep 17 00:00:00 2001 From: Erik Ziegler Date: Wed, 4 Jul 2018 14:45:59 +0200 Subject: [PATCH] fix(stackScroll) Move Stack Scroll from More menu to main toolbar (closes #121) --- .../components/toolbarSection/toolbarSection.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/OHIFViewer/client/components/toolbarSection/toolbarSection.js b/OHIFViewer/client/components/toolbarSection/toolbarSection.js index 17105db6a..6641c02d4 100644 --- a/OHIFViewer/client/components/toolbarSection/toolbarSection.js +++ b/OHIFViewer/client/components/toolbarSection/toolbarSection.js @@ -69,13 +69,6 @@ Template.toolbarSection.helpers({ iconClasses: 'fa fa-crosshairs' }); - extraTools.push({ - id: 'stackScroll', - title: 'Stack Scroll', - classes: 'imageViewerTool', - iconClasses: 'fa fa-bars' - }); - extraTools.push({ id: 'magnify', title: 'Magnify', @@ -156,6 +149,13 @@ Template.toolbarSection.helpers({ const buttonData = []; + buttonData.push({ + id: 'stackScroll', + title: 'Stack Scroll', + classes: 'imageViewerTool', + iconClasses: 'fa fa-bars' + }); + buttonData.push({ id: 'zoom', title: 'Zoom',