diff options
author | nyamatongwe <devnull@localhost> | 2012-07-16 13:56:31 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-07-16 13:56:31 +1000 |
commit | b0e22b26c6466160870dc6d0c4acb634bd27b943 (patch) | |
tree | a8877fd254aa9250674701ab4a79faaf86a592e2 | |
parent | aab3d5e5a9027f4292d056b27553f59a4af61786 (diff) | |
download | scintilla-mirror-b0e22b26c6466160870dc6d0c4acb634bd27b943.tar.gz |
Send SCN_UPDATEUI with SC_UPDATE_SELECTION for backspace in virtual space. Bug #3543121.
-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 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(); } |