Merge pull request #3873 from IgorA100/patch-27
Fix: Tracking the "shift" button press on live view pagepull/3875/head
commit
8cb4f39593
|
@ -605,7 +605,7 @@ function handleClick(event) {
|
|||
const y = parseInt((event.pageY - pos.top) * scaleY);
|
||||
|
||||
if (showMode == 'events' || !imageControlMode) {
|
||||
if ( event.shift ) {
|
||||
if ( event.shift || event.shiftKey ) {
|
||||
streamCmdPan(x, y);
|
||||
} else if (event.ctrlKey) {
|
||||
streamCmdZoomOut();
|
||||
|
|
Loading…
Reference in New Issue