diff options
author | Neil <nyamatongwe@gmail.com> | 2013-12-17 14:16:29 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-12-17 14:16:29 +1100 |
commit | 9fa594e3ebde4d884afe9626be086143cf0adaf8 (patch) | |
tree | 365e091d2d9408d27ca8319d47621f8f6a422f7e /src/Editor.cxx | |
parent | 5d1381f5b22d9999cad3d208268b7d976b478b54 (diff) | |
download | scintilla-mirror-9fa594e3ebde4d884afe9626be086143cf0adaf8.tar.gz |
Added DropSelectionN API.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 7e1da9e20..f254af4dd 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -9526,6 +9526,11 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { Redraw(); break; + case SCI_DROPSELECTIONN: + sel.DropSelection(wParam); + Redraw(); + break; + case SCI_SETMAINSELECTION: sel.SetMain(wParam); Redraw(); |