Skip to content

Commit

Permalink
feat(pointcloud): Ctrl+A is conficted with A
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerwin-L committed Sep 22, 2022
1 parent 09106f6 commit b35d671
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const ViewportProviderComponent = (props: any) => {
return;
}

if (!e.shiftKey || !e.ctrlKey) {
if (!e.shiftKey && !e.ctrlKey) {
if (e.keyCode === EKeyCode.A) {
if (skipBeforePageTurning) {
skipBeforePageTurning(() => dispatch(PageBackward()));
Expand Down

0 comments on commit b35d671

Please sign in to comment.