Skip to content

Commit

Permalink
fix: windows Unable to hold down ctrl multiple selection
Browse files Browse the repository at this point in the history
  • Loading branch information
shanhexi committed Jan 9, 2024
1 parent 3a67d96 commit e526e81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ const useMultipleSelect = (props: {
if (event.keyCode === 16) {
isShiftDownRef.current = true;
}
if (event.keyCode === 91) {
if (event.keyCode === 91 || event.keyCode === 17) {
isCmdDownRef.current = true;
}
};

0 comments on commit e526e81

Please sign in to comment.