diff options
author | nyamatongwe <devnull@localhost> | 2000-11-16 02:12:46 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-11-16 02:12:46 +0000 |
commit | 46dcb7e7c6c68ae4a7e97ec10d1e932bb5c951ce (patch) | |
tree | 17153a2b0c41e0e650e443e49b947c63a4bf72cf /src/Editor.cxx | |
parent | f1708344ba0c4cfe1dd344e41bee459ac802d90e (diff) | |
download | scintilla-mirror-46dcb7e7c6c68ae4a7e97ec10d1e932bb5c951ce.tar.gz |
Line mode selection forces stream selection instead of rectangular
selection.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 48f5eb017..de4783cb3 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2745,6 +2745,7 @@ void Editor::ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, b NotifyDoubleClick(pt, shift); } else { // Single click if (inSelMargin) { + selType = selStream; if (ctrl) { SelectAll(); lastClickTime = curTime; |