diff options
author | nyamatongwe <devnull@localhost> | 2003-12-03 11:17:13 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-12-03 11:17:13 +0000 |
commit | 7c0a8e73df69c358f0412fed89f638c90dd8432c (patch) | |
tree | 7cecedbb7a3ac99373d7bdf68b35539334ce603d /src | |
parent | 83e489b3df09906fb1c32348bc850ca55fcedc3f (diff) | |
download | scintilla-mirror-7c0a8e73df69c358f0412fed89f638c90dd8432c.tar.gz |
Explicitly set the selection type when switching documents as rectangular
selection slows it down markedly.
Diffstat (limited to 'src')
-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 05fa0a23e..be02055a8 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -5225,6 +5225,7 @@ void Editor::SetDocPointer(Document *document) { pdoc->AddRef(); // Ensure all positions within document + selType = selStream; currentPos = 0; anchor = 0; targetStart = 0; |