Skip to content

Commit

Permalink
Merge pull request #4142 from IgorA100/patch-442721
Browse files Browse the repository at this point in the history
Fix: The double click to go fullscreen should only happen if not shift/ctl modifiers are active
  • Loading branch information
connortechnology authored Sep 20, 2024
2 parents c37d773 + 6d7ee93 commit ff4256b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions web/skins/classic/js/skin.js
Original file line number Diff line number Diff line change
Expand Up @@ -1227,6 +1227,7 @@ var doubleTouchExecute = function(event, touchEvent) {
};

var doubleClickOnStream = function(event, touchEvent) {
if (shifted || ctrled || alted) return;
let target = null;
if (event.target) {// Click NOT on touch screen, use THIS
//Process only double clicks directly on the image, excluding clicks,
Expand Down

0 comments on commit ff4256b

Please sign in to comment.