aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-07-07 23:51:04 +1000
committerNeil <nyamatongwe@gmail.com>2014-07-07 23:51:04 +1000
commit43ca027041c2e06ddfa6d28ccb7f17a35a08d6cf (patch)
tree317424bc8009361a68b32466159cd32a2160f138 /src/Editor.cxx
parent9206c1ca0542c9f34d3374dd2f8bd7443de9fae2 (diff)
downloadscintilla-mirror-43ca027041c2e06ddfa6d28ccb7f17a35a08d6cf.tar.gz
Fix bug where too many characters may be deleted when a rectangular selection is
deleted.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index db0aecf43..d3e5f3090 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -4321,6 +4321,7 @@ void Editor::DelChar() {
}
void Editor::DelCharBack(bool allowLineStartDeletion) {
+ RefreshStyleData();
if (!sel.IsRectangular())
FilterSelections();
if (sel.IsRectangular())