From c595f6d4b01ed74bff323ecb08b09695bcbc770e Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Tue, 17 Feb 2009 21:20:08 +0000 Subject: [PATCH] 2725: End Of Line Report not flowing over page boundaries svn: r12026 --- 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