Skip to content

Commit

Permalink
Merge pull request #1746 from xeokit/XEOK-160-fix-angle-measurement-s…
Browse files Browse the repository at this point in the history
…napping-dot

XEOK-160 Fix AngleMeasurementsMouseControl's red dot position
  • Loading branch information
xeolabs authored Nov 24, 2024
2 parents a1327dd + 15158d8 commit cbdc74f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export class AngleMeasurementsMouseControl extends AngleMeasurementsControl {
mouseHovering = false;
if (pointerLens) {
pointerLens.visible = true;
pointerLens.pointerPos = event.canvasPos;
pointerLens.canvasPos = event.canvasPos;
pointerLens.snappedCanvasPos = event.snappedCanvasPos || event.canvasPos;
pointerLens.snapped = false;
}
Expand Down

0 comments on commit cbdc74f

Please sign in to comment.