mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-29 18:53:12 +08:00
fix: windows Unable to hold down ctrl multiple selection
This commit is contained in:
@ -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;
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user