Closed jvine closed 7 years ago
The left and right arrows, navigation window, and home, zoom etc buttons in OSD fade out after the configured time period.
You'll notice that when the mouse is over the navigation window (the small box in the bottom right showing the whole image with your current zoom level as a white rectangle) the controls will not fade out. This is due to this:
Here's it's checking if the mouse is over the navigation window, if not this.viewer.setControlsEnabled(false);
is called on OSD.
We should also check that the prev/next buttons are not moused over in a similar way, and whether they have focus before disabling the controls, e.g.
this.$prevButton.is( ":focus" )
Resolved upstream here: https://github.com/UniversalViewer/universalviewer/pull/488
As you tab through the viewer controls, the left and right arrows disappear as soon as you tab to them - I can't quite tell what triggers them to appear and disappear, in fact, but they disappear when they have keyboard focus, and it should be the opposite... they should both a) be visible and b) have a visible focus state (which they do have on mouse hover).