aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-12-17 14:16:29 +1100
committerNeil <nyamatongwe@gmail.com>2013-12-17 14:16:29 +1100
commit07510a6ffd4f5b286c0d39711ddd9a651c4a84e2 (patch)
tree9e8a3b88e8b0cf0f330ce63bfa093a41eb9a1e3c /src/Editor.cxx
parent5d22624b5ff89b8e3fcefeb27c19012c668b247c (diff)
downloadscintilla-mirror-07510a6ffd4f5b286c0d39711ddd9a651c4a84e2.tar.gz
Added DropSelectionN API.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx5
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();