diff options
author | nyamatongwe <unknown> | 2003-12-03 11:17:13 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-12-03 11:17:13 +0000 |
commit | e05e979c806ce2f6f79530c1314b2ef1c0b439c2 (patch) | |
tree | 7cecedbb7a3ac99373d7bdf68b35539334ce603d /src | |
parent | a8523581dade0966c405d8cde51c3ee0654e7e8d (diff) | |
download | scintilla-mirror-e05e979c806ce2f6f79530c1314b2ef1c0b439c2.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; |