aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2010-01-15 02:28:06 +0000
committernyamatongwe <unknown>2010-01-15 02:28:06 +0000
commit5ea67a3d71f61972c5b3a40ec8fa0510e9cda9bc (patch)
tree0db3798131650b5f9f13cd809cb1becb6e571964 /src
parentc20dbc363478632de21c0f3869de29a87276ce15 (diff)
downloadscintilla-mirror-5ea67a3d71f61972c5b3a40ec8fa0510e9cda9bc.tar.gz
Fix for bug #2930488 Select All doesn't work if there's a rectangular
selection.
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 e51eb82a3..da37d4781 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -3912,6 +3912,7 @@ void Editor::Clear() {
}
void Editor::SelectAll() {
+ sel.Clear();
SetSelection(0, pdoc->Length());
Redraw();
}