Skip to content

Commit

Permalink
XEOK-160 Fix AngleMeasurementsMouseControl's red dot position
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalDybizbanskiCreoox committed Nov 24, 2024
1 parent a1327dd commit 15158d8
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 15158d8

Please sign in to comment.