We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40447fd commit cee4adfCopy full SHA for cee4adf
modules/gpad/TFramePainter.mjs
@@ -1074,8 +1074,8 @@ const FrameInteractive = {
1074
.on('touchend', null, true);
1075
} else if (settings.ContextMenu) {
1076
this.zoom_curr = arr[0];
1077
- this.getFrameSvg().on('touchcancel', this.endTouchSel.bind(this))
1078
- .on('touchend', this.endTouchSel.bind(this));
+ this.getFrameSvg().on('touchcancel', evnt => this.endTouchMenu('', evnt))
+ .on('touchend', evnt => this.endTouchMenu('', evnt));
1079
evnt.preventDefault();
1080
evnt.stopPropagation();
1081
}
0 commit comments