Merge pull request #4021 from IgorA100/patch-105

Fix: Recalculate "Scale" after zooming by mouse click (montage.js)
pull/4023/head
Isaac Connor 2024-05-21 13:36:05 -04:00 committed by GitHub
commit f8ba3c73cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -549,6 +549,7 @@ function handleClick(evt) {
const point = {clientX: event.clientX, clientY: event.clientY};
panZoom[id].zoomToPoint(scale, point, {focal: {x: event.clientX, y: event.clientY}});
}
setTriggerChangedMonitors(id);
//updateScale = true;
}
}