This commit is contained in:
Joao Moreno
2017-03-31 15:36:14 +02:00
parent 2872c60898
commit 7a0d0d7f96

View File

@@ -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 {