Hotkeys not working: Z, PageUp, PageDown, =
See original GitHub issueBug Report
Issue 1 - Description:
Hotkeys not working on the Viewer page: Z
, PageUp
, PageDown
.
Steps to Reproduce
- Open a study
- Try to use the following hotkeys:
Z
,PageUp
,PageDown
- Checks that nothing happened.
Actual Result
Hotkeys Z
, PageUp
, PageDown
are not working, nothing happens at the viewer page.
Expected Result
- When user hits hotkey
Z
, the Zoom tool should be activated at the toolbar - User should be able to navigate on the thumbnails using hotkeys:
PageUp
andPageDown
2.1. When user hits hotkeyPageDown
, the next thumbnail series should be loaded in the viewport 2.2. When user hits hotkeyPageUp
, the previous thumbnail series should be loaded in the viewport
Issue 2 - Description:
When 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
Steps to Reproduce
- Open a study
- Change layout to 3 viewports
- Invert the image by pressing hotkey
I
- Press hotkey
=
Actual Result
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.
Expected Result
User should be able to reset the inverted
image (in the active viewport) by pressing hotkey =
or clicking on Reset
button on toolbar.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
My pagedown and pageup keys don't work. Sometimes even ...
I have a laptop running Windows 10 now. My page up and page down keys don't work sometimes and at other times in...
Read more >Mac keyboard shortcuts - Apple Support
Command-Z: Undo the previous command. You can then press Shift-Command-Z to Redo, reversing the undo command. In some apps, you can undo and ......
Read more >Keyboard Shortcuts (Windows)
KEYBOARD SHORTCUTS (Windows). Note: For Mac users, ... This substitution with work for the majority of commands ... Ctrl + Page Up, Page...
Read more >Keyboard shortcuts for Adobe Acrobat
Keys for working with PDF Portfolios ; If in the body of the file list, move to the next or last set of...
Read more >Keyboard shortcuts for macOS - Visual Studio Code
⌥Z. Toggle word wrap. Multi-cursor and selection. ⌥ + click. Insert cursor ... Column (box) selection page down ... Show Problems panel. F8...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@mirnasilva We actually have 3 issues here.
Z
hotkey not working Fixed, we were missing the commandsetZoomTool
.PageUp
,PageDown
hotkey not working Fixed, we have never implemented the method to navigate through current displaySets=
hotkey not resettinginverted
configurations. Wht happens is that=
is current attached tozoom to fit
so it’s not suposed to reset invert. We havespace
currently set forReset
and it was properly resetting theinvert
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
👋 @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 genericsetToolActive
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 ^_^