Skip to content

Commit

Permalink
fix(pointcloud): Prevent default event on ctrl + a
Browse files Browse the repository at this point in the history
  • Loading branch information
lijingchi committed Mar 26, 2023
1 parent f0c360e commit cf2d147
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ const PointCloudListener: React.FC<IProps> = ({
pasteSelectedBoxes();
break;
case 'a':
e.preventDefault();
ptCtx.selectedAllBoxes();
break;
case 'z': {
Expand Down

0 comments on commit cf2d147

Please sign in to comment.