Skip to content

Commit

Permalink
Allow mousedown even to propagate on right click
Browse files Browse the repository at this point in the history
Fixes #913
  • Loading branch information
Tyriar committed Aug 24, 2017
1 parent 6e9d60d commit b706383
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/SelectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit b706383

Please sign in to comment.