aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2012-07-16 13:53:13 +1000
committernyamatongwe <unknown>2012-07-16 13:53:13 +1000
commitd55f85fe03b527f65ec163a24c64c4aac9846d47 (patch)
treeb631073b274049b703eac03074efa37bbfa32d13 /src/Editor.cxx
parent57442bc7a734ccdcfcebe189eb38eda61b19d099 (diff)
downloadscintilla-mirror-d55f85fe03b527f65ec163a24c64c4aac9846d47.tar.gz
Fix rectangular selection range after backspace. Bug #3543097.
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 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();
}