From 8db826314e9852515253ff66c62abbfaf0b84fd7 Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Mon, 18 May 2009 14:42:26 +0000 Subject: [PATCH] 2860: Problem with det_ancestor report in PDF at page breaks\n no more STRANGE output svn: r12537 --- src/plugins/lib/libcairodoc.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/lib/libcairodoc.py b/src/plugins/lib/libcairodoc.py index bfb0bdb51..6e77e5225 100644 --- a/src/plugins/lib/libcairodoc.py +++ b/src/plugins/lib/libcairodoc.py @@ -503,6 +503,10 @@ class GtkDocParagraph(GtkDocBaseElement): startheight = linerange[0] endheight = linerange[1] splitline = -1 + if lineiter.at_last_line(): + #only one line of text that does not fit + return (None, self), 0 + while not lineiter.at_last_line(): #go to next line, see if all fits, if not split lineiter.next_line()