Skip to content

Commit

Permalink
fixes #23745
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed Mar 31, 2017
1 parent e79e82c commit cc46bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/base/browser/ui/list/listWidget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit cc46bbf

Please sign in to comment.