diff options
author | nyamatongwe <devnull@localhost> | 2010-01-15 02:28:06 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-01-15 02:28:06 +0000 |
commit | 2cc34eed35f930f266457e26ef9adcdcb2348072 (patch) | |
tree | 0db3798131650b5f9f13cd809cb1becb6e571964 /src | |
parent | c39d8541b0c586b23b0996e1a464d35b8876875b (diff) | |
download | scintilla-mirror-2cc34eed35f930f266457e26ef9adcdcb2348072.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(); } |