aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2012-07-16 13:56:31 +1000
committernyamatongwe <unknown>2012-07-16 13:56:31 +1000
commitaeb8bd02a2b3f421be9269ce55ed230fda1f9f48 (patch)
tree993f97097e70c24155e9c05fa022cc08b38b05a2 /src
parentd55f85fe03b527f65ec163a24c64c4aac9846d47 (diff)
downloadscintilla-mirror-aeb8bd02a2b3f421be9269ce55ed230fda1f9f48.tar.gz
Send SCN_UPDATEUI with SC_UPDATE_SELECTION for backspace in virtual space. Bug #3543121.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 8a033bb19..f3c7709a0 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -4322,6 +4322,7 @@ void Editor::DelCharBack(bool allowLineStartDeletion) {
ClearSelection();
}
sel.RemoveDuplicates();
+ ContainerNeedsUpdate(SC_UPDATE_SELECTION);
// Avoid blinking during rapid typing:
ShowCaretAtCurrentPosition();
}