Skip to content

Commit

Permalink
Merge pull request #1731 from xeokit/fix/planview
Browse files Browse the repository at this point in the history
XCD-197 Fix planView panning in CameraControls
  • Loading branch information
xeolabs authored Nov 12, 2024
2 parents 987cb29 + 6893e41 commit 1921ba7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class MousePanRotateDollyHandler {
}

function isPanning() {
return cameraControl._isKeyDownForAction(cameraControl.MOUSE_PAN, keyDown);
return configs.planView || cameraControl._isKeyDownForAction(cameraControl.MOUSE_PAN, keyDown);
}

function isRotating() {
Expand Down

0 comments on commit 1921ba7

Please sign in to comment.