Hotkeys not working on the Viewer page: Z, PageUp, PageDown.
Z, PageUp, PageDownHotkeys Z, PageUp, PageDown are not working, nothing happens at the viewer page.
Z, the Zoom tool should be activated at the toolbarPageUp and PageDownPageDown, the next thumbnail series should be loaded in the viewportPageUp, the previous thumbnail series should be loaded in the viewportWhen there are multiple viewports, hotkey = does not reset the inverted status of the image in the active viewport.
In the gif below, user presses the = hotkey to reset all viewports before clicking on the Reset button

I=Hotkey = does not reset the inverted status of the image. If user clicks on the Reset button, the inverted image will be reset with success.
User should be able to reset the inverted image (in the active viewport) by pressing hotkey = or clicking on Reset button on toolbar.
For example, the cornerstone extension has some command named Rotate that is active in the ACTIVE_VIEWPORT::CORNERSTONE context. This means that, if something fires the Rotate command, cornerstone's implementation of it will only be called/triggered if the active viewport is a cornerstone viewport.
<root>/platform/viewer/public/config/default.jsThis setup is what allows multiple extensions to register similar commands that can leverage the same hotkeys, but intelligently know when which one should be used.
default.js to use the correct command names@ladeirarodolfo Please disregard issue #2. The correct hotkey responsible for reset the viewport is SPACEBAR. The functionality is working as expected :)
How would one find out what the command is to enable a tool, like the zoom tool in this case? It seems that "setZoomTool" is not the correct one for the zoom tool.
馃憢 @cmcgee-mac
We're trying to document the available commands better. The end-goal is to have them listed in the readme for our maintained extensions. You can see a few listed here:
https://github.com/OHIF/Viewers/tree/master/extensions/cornerstone#commands-module
Those might be out of date. You can always dig in to the source and see the list of named commands in the extension's command definitions:
https://github.com/OHIF/Viewers/blob/master/extensions/cornerstone/src/commandsModule.js#L167-L246
It looks like, at some point, we switched from setZoomTool to a more generic setToolActive that takes a tool's name as a parameter:
https://github.com/OHIF/Viewers/blob/master/extensions/cornerstone/src/commandsModule.js#L84-L89
We are more than happy to hear any thoughts you have around improving discovery of commands, or PRs to improve our documentation ^_^
@mirnasilva
We actually have 3 issues here.
Z hotkey not workingsetZoomTool. PageUp, PageDown hotkey not working
Fixed, we have never implemented the method to navigate through current displaySets
= hotkey not resetting inverted configurations.
Wht happens is that = is current attached to zoom to fit so it's not suposed to reset invert. We have space currently set for Reset and it was properly resetting the invert configurations. If you can take a look again and let me know if I tested it wrongly.
Fixable issues should be fixed by the PR: #1446