aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2012-07-16 13:56:31 +1000
committernyamatongwe <devnull@localhost>2012-07-16 13:56:31 +1000
commitb0e22b26c6466160870dc6d0c4acb634bd27b943 (patch)
treea8877fd254aa9250674701ab4a79faaf86a592e2
parentaab3d5e5a9027f4292d056b27553f59a4af61786 (diff)
downloadscintilla-mirror-b0e22b26c6466160870dc6d0c4acb634bd27b943.tar.gz
Send SCN_UPDATEUI with SC_UPDATE_SELECTION for backspace in virtual space. Bug #3543121.
-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();
}