Merge pull request #914 from Tyriar/913_mousedown_prop

Allow mousedown even to propagate on right click
This commit is contained in:
Daniel Imms
2017-08-25 07:44:13 -07:00
committed by GitHub
-1
View File
@@ -316,7 +316,6 @@ export class SelectionManager extends EventEmitter implements ISelectionManager
// If we have selection, we want the context menu on right click even if the
// terminal is in mouse mode.
if (event.button === 2 && this.hasSelection) {
event.stopPropagation();
return;
}