diff options
author | nyamatongwe <devnull@localhost> | 2007-07-26 09:43:37 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-07-26 09:43:37 +0000 |
commit | b9bbbfe7848982c41e91b4697f849040bcf4de29 (patch) | |
tree | 7ec3319254010452fd1d71ceb2fd8197b04856d7 /src | |
parent | 8e7a29f2fd09477eb41e2d5bd33d11ef04740c32 (diff) | |
download | scintilla-mirror-b9bbbfe7848982c41e91b4697f849040bcf4de29.tar.gz |
Fixed bug when ShowAll called where linesInDocument was always reset to 1
which hid most of the file.
Diffstat (limited to 'src')
-rw-r--r-- | src/ContractionState.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ContractionState.cxx b/src/ContractionState.cxx index 4e289a155..abf2e67be 100644 --- a/src/ContractionState.cxx +++ b/src/ContractionState.cxx @@ -45,7 +45,6 @@ void ContractionState::Clear() { heights = 0; delete displayLines; displayLines = 0; - linesInDocument = 1; } int ContractionState::LinesInDoc() const { @@ -223,7 +222,9 @@ bool ContractionState::SetHeight(int lineDoc, int height) { } void ContractionState::ShowAll() { + int lines = LinesInDoc(); Clear(); + linesInDocument = lines; } // Debugging checks |