Don't track ctrl-click as the start of a selection

Closes #396
This commit is contained in:
Kevin Sawicki
2013-03-28 22:06:56 -04:00
parent aab50d3c2c
commit bd48cfced0
2 changed files with 15 additions and 1 deletions

View File

@@ -373,7 +373,7 @@ class Editor extends View
else if clickCount == 3
@activeEditSession.selectLine() unless e.shiftKey
@selectOnMousemoveUntilMouseup() unless e.originalEvent.which > 1
@selectOnMousemoveUntilMouseup() unless e.ctrlKey or e.originalEvent.which > 1
@renderedLines.on 'mousedown', onMouseDown