diff options
author | Neil <nyamatongwe@gmail.com> | 2014-07-07 23:51:04 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-07-07 23:51:04 +1000 |
commit | ee6a5a8ecf0498fd2bc48803335f858eccfece69 (patch) | |
tree | 46470b53c6173a9b3bfce1166ed1021768ea753c /src/Editor.cxx | |
parent | 8b5aaf5c4aca7f6369adbba839e4c7366e9bf8a3 (diff) | |
download | scintilla-mirror-ee6a5a8ecf0498fd2bc48803335f858eccfece69.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.cxx | 1 |
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()) |