aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-11-16 02:12:46 +0000
committernyamatongwe <unknown>2000-11-16 02:12:46 +0000
commitc013fdd1aafcf6d89ba4f90bdc9ac9a20c3cd389 (patch)
tree17153a2b0c41e0e650e443e49b947c63a4bf72cf /src
parentc6013e882e03d2b9db569995d84a6dc48c92aa10 (diff)
downloadscintilla-mirror-c013fdd1aafcf6d89ba4f90bdc9ac9a20c3cd389.tar.gz
Line mode selection forces stream selection instead of rectangular
selection.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx1
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;