diff options
author | Mitchell Foral <unknown> | 2017-11-20 12:24:51 +1100 |
---|---|---|
committer | Mitchell Foral <unknown> | 2017-11-20 12:24:51 +1100 |
commit | 273f2486599617aac4343998bf15dc03f170dbcf (patch) | |
tree | 86f3340b71e231871f0af8c7b269a26f055ff309 /src | |
parent | e5ff7643da283c203ae53cd4a9baf9c247b55f74 (diff) | |
download | scintilla-mirror-273f2486599617aac4343998bf15dc03f170dbcf.tar.gz |
Add SCI_GETMOVEEXTENDSSELECTION.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 163be5c15..d45a8684c 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -7625,6 +7625,8 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { default: // ?! return SC_SEL_STREAM; } + case SCI_GETMOVEEXTENDSSELECTION: + return sel.MoveExtends(); case SCI_GETLINESELSTARTPOSITION: case SCI_GETLINESELENDPOSITION: { SelectionSegment segmentLine( |