From b706383687353fd90f78c18171db82b7df01e43f Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 24 Aug 2017 11:15:25 -0700 Subject: [PATCH] Allow mousedown even to propagate on right click Fixes #913 --- src/SelectionManager.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SelectionManager.ts b/src/SelectionManager.ts index f3aa5f82..1aaec14b 100644 --- a/src/SelectionManager.ts +++ b/src/SelectionManager.ts @@ -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; }