Revert "Disable selection override on Windows/Linux"

This reverts commit 3479614c73.
This commit is contained in:
Daniel Imms
2017-08-08 01:05:24 -07:00
parent f52b43b380
commit 0902b92f79
+1 -1
View File
@@ -327,7 +327,7 @@ export class SelectionManager extends EventEmitter implements ISelectionManager
// Allow selection when using a specific modifier key, even when disabled
if (!this._enabled) {
const shouldForceSelection = Browser.isMac && event.altKey;
const shouldForceSelection = Browser.isMac ? event.altKey : event.shiftKey;
if (!shouldForceSelection) {
return;