aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-07-26 09:43:37 +0000
committernyamatongwe <devnull@localhost>2007-07-26 09:43:37 +0000
commitb9bbbfe7848982c41e91b4697f849040bcf4de29 (patch)
tree7ec3319254010452fd1d71ceb2fd8197b04856d7 /src
parent8e7a29f2fd09477eb41e2d5bd33d11ef04740c32 (diff)
downloadscintilla-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.cxx3
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