diff options
author | Neil <nyamatongwe@gmail.com> | 2018-11-29 07:50:35 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-11-29 07:50:35 +1100 |
commit | f18c7c8cdcbd00681dee4d8110c2b767f1d7f5f8 (patch) | |
tree | bdb34d39d571684535ee4d2da25cf4f53050ddb4 /src/Editor.cxx | |
parent | d51da684fea2b1789e33fa4856ed58a07928f7a5 (diff) | |
download | scintilla-mirror-f18c7c8cdcbd00681dee4d8110c2b767f1d7f5f8.tar.gz |
Notify with SC_UPDATE_SELECTION when user performs a multiple selection add.
Diffstat (limited to 'src/Editor.cxx')
-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 4163c45b2..8a8bae6cc 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -773,6 +773,7 @@ void Editor::MultipleSelectAdd(AddNumber addNumber) { selectedText.c_str(), searchFlags, &lengthFound); if (pos >= 0) { sel.AddSelection(SelectionRange(pos + lengthFound, pos)); + ContainerNeedsUpdate(SC_UPDATE_SELECTION); ScrollRange(sel.RangeMain()); Redraw(); if (addNumber == addOne) |