diff options
| author | nyamatongwe <unknown> | 2005-02-18 23:56:12 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2005-02-18 23:56:12 +0000 |
| commit | 085dbb1178520a6ba865472661e77428969662f9 (patch) | |
| tree | 7bfe46a772bc4e08052f2e032f6b06158c2ae2bb /src/Editor.cxx | |
| parent | a489bd3241ab3d0333f979190417c495053495ed (diff) | |
| download | scintilla-mirror-085dbb1178520a6ba865472661e77428969662f9.tar.gz | |
Patch from wxWidgets to fix infinite loop due to wrapping never completing
after ClearAll(). Bugs 1106564, 1144000.
Diffstat (limited to 'src/Editor.cxx')
| -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 e049485f2..af0a73a19 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -3304,6 +3304,7 @@ void Editor::ClearAll() { currentPos = 0; SetTopLine(0); SetVerticalScrollPos(); + InvalidateStyleRedraw(); } void Editor::ClearDocumentStyle() { |
