mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
fixes #23745
This commit is contained in:
@@ -271,7 +271,7 @@ class KeyboardController<T> implements IDisposable {
|
||||
}
|
||||
|
||||
function isSelectionSingleChangeEvent(event: IListMouseEvent<any>): boolean {
|
||||
return platform.isMacintosh ? event.altKey : event.ctrlKey;
|
||||
return platform.isMacintosh ? event.metaKey : event.ctrlKey;
|
||||
}
|
||||
|
||||
function isSelectionRangeChangeEvent(event: IListMouseEvent<any>): boolean {
|
||||
|
||||
Reference in New Issue
Block a user