diff options
author | nyamatongwe <devnull@localhost> | 2012-07-16 13:53:13 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-07-16 13:53:13 +1000 |
commit | aab3d5e5a9027f4292d056b27553f59a4af61786 (patch) | |
tree | 29fb6a6e556c532329cf62b5f99453062b8c7b6d /src | |
parent | c53cf596dad0c8ff3a73a1364ec3a7ec4b788f7b (diff) | |
download | scintilla-mirror-aab3d5e5a9027f4292d056b27553f59a4af61786.tar.gz |
Fix rectangular selection range after backspace. Bug #3543097.
Diffstat (limited to 'src')
-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 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(); } |