From dcd4115466df505dea13e8849c72bf8858418d6b Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Tue, 17 Feb 2009 21:19:44 +0000 Subject: [PATCH] 2725: End Of Line Report not flowing over page boundaries svn: r12025 --- src/plugins/docgen/CairoDoc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/docgen/CairoDoc.py b/src/plugins/docgen/CairoDoc.py index b5005083f..fadbf1842 100644 --- a/src/plugins/docgen/CairoDoc.py +++ b/src/plugins/docgen/CairoDoc.py @@ -582,11 +582,12 @@ class GtkDocTable(GtkDocBaseElement): row = self._children[row_index] (r1, r2), row_height = row.divide(layout, table_width, height, dpi_x, dpi_y) - if r2 is not None: + if r2 is not None: #break the table in two parts break table_height += row_height row_index += 1 + height -= row_height # divide the table if any row did not fit new_table = None