Merge pull request #3873 from IgorA100/patch-27

Fix: Tracking the "shift" button press on live view page
pull/3875/head
Isaac Connor 2024-03-18 13:00:14 -04:00 committed by GitHub
commit 8cb4f39593
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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();