mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-30 11:12:55 +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) {
|
if (event.keyCode === 16) {
|
||||||
isShiftDownRef.current = true;
|
isShiftDownRef.current = true;
|
||||||
}
|
}
|
||||||
if (event.keyCode === 91) {
|
if (event.keyCode === 91 || event.keyCode === 17) {
|
||||||
isCmdDownRef.current = true;
|
isCmdDownRef.current = true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user