diff options
author | nyamatongwe <unknown> | 2010-01-15 02:28:06 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-01-15 02:28:06 +0000 |
commit | 5ea67a3d71f61972c5b3a40ec8fa0510e9cda9bc (patch) | |
tree | 0db3798131650b5f9f13cd809cb1becb6e571964 /src | |
parent | c20dbc363478632de21c0f3869de29a87276ce15 (diff) | |
download | scintilla-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.cxx | 1 |
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(); } |