diff options
author | nyamatongwe <devnull@localhost> | 2005-02-18 23:56:12 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-02-18 23:56:12 +0000 |
commit | cee781369784bef81d4379f83ab34fd2815ba1c8 (patch) | |
tree | 7bfe46a772bc4e08052f2e032f6b06158c2ae2bb /src | |
parent | ce33e89500c3045a3d9b1192b1c4421c02aafd7e (diff) | |
download | scintilla-mirror-cee781369784bef81d4379f83ab34fd2815ba1c8.tar.gz |
Patch from wxWidgets to fix infinite loop due to wrapping never completing
after ClearAll(). Bugs 1106564, 1144000.
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 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() { |