Skip to content

Commit

Permalink
Fix planView panning in CameraControls
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlal99 committed Nov 12, 2024
1 parent 987cb29 commit 6893e41
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 6893e41

Please sign in to comment.