diff options
author | nyamatongwe <devnull@localhost> | 2008-08-03 11:18:52 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-08-03 11:18:52 +0000 |
commit | 75bd235fda3664fe9fbc09bb1d0e0d7f8e634f78 (patch) | |
tree | 8f37c3f8048c3c534eec7a852e8788a04b9a83ea /src/Editor.cxx | |
parent | 24dd8727e80b11543cbc5898e21d283228d81f83 (diff) | |
download | scintilla-mirror-75bd235fda3664fe9fbc09bb1d0e0d7f8e634f78.tar.gz |
ClearDocumentStyle clears all indicators in case the lexer has used an
indicator.
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 c72fc96d0..372f03ea9 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -3497,6 +3497,7 @@ void Editor::ClearDocumentStyle() { pdoc->SetStyleFor(pdoc->Length(), 0); cs.ShowAll(); pdoc->ClearLevels(); + pdoc->decorations.ClearAll(); } void Editor::CopyAllowLine() { |