aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2012-07-16 13:53:13 +1000
committernyamatongwe <devnull@localhost>2012-07-16 13:53:13 +1000
commitaab3d5e5a9027f4292d056b27553f59a4af61786 (patch)
tree29fb6a6e556c532329cf62b5f99453062b8c7b6d /src
parentc53cf596dad0c8ff3a73a1364ec3a7ec4b788f7b (diff)
downloadscintilla-mirror-aab3d5e5a9027f4292d056b27553f59a4af61786.tar.gz
Fix rectangular selection range after backspace. Bug #3543097.
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 cd72953ae..8a033bb19 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -4317,6 +4317,7 @@ void Editor::DelCharBack(bool allowLineStartDeletion) {
sel.Range(r).ClearVirtualSpace();
}
}
+ ThinRectangularRange();
} else {
ClearSelection();
}