diff options
author | nyamatongwe <devnull@localhost> | 2002-02-07 01:02:47 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-02-07 01:02:47 +0000 |
commit | 6f1bfebcb371b0c0e210d4325cb4825754d3715b (patch) | |
tree | fdbad574b979195751de9358074ea30d32d3bf8b | |
parent | 9ee922e77a7d27c5c7bda80735064241c277ad43 (diff) | |
download | scintilla-mirror-6f1bfebcb371b0c0e210d4325cb4825754d3715b.tar.gz |
After rectangular paste, caret is left at initial position.
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 613cd0a1e..7f7ea7168 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -2086,7 +2086,7 @@ void Editor::PasteRectangular(int pos, const char *ptr, int len) { } } pdoc->EndUndoAction(); - SetEmptySelection(insertPos); + SetEmptySelection(pos); } bool Editor::CanPaste() { |