From: Martin Vermeer Date: Wed, 22 Oct 2003 06:02:55 +0000 (+0000) Subject: This should fix the "oops" in the "is a bit silly" bug fix X-Git-Tag: 1.6.10~15921 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c7c37bee5e3edc8ee689805b9e49d9ccd8ff2e32;p=features.git This should fix the "oops" in the "is a bit silly" bug fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7947 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 6cbb3deb1a..1673d16b59 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2003-10-22 Martin Vermeer + + * text.C: fixed an "oops" in the "is a bit silly" + bug fix 2003-10-21 André Pönitz diff --git a/src/text.C b/src/text.C index dcc0cbcfb8..c065bc19da 100644 --- a/src/text.C +++ b/src/text.C @@ -727,16 +727,21 @@ pos_type LyXText::rowBreakPoint(ParagraphList::iterator pit, if (point == last || chunkwidth >= width - left) { if (pos < i) { point = i - 1; + // exit on last registered breakpoint: + break; } } - break; + // emergency exit: + if (i + 1 < last) + break; } InsetOld * in = pit->getInset(i); if (!in || in->isChar()) { // some insets are line separators too if (pit->isLineSeparator(i)) { - point = i; + // register breakpoint: + point = i; chunkwidth = 0; } } @@ -1453,7 +1458,8 @@ void LyXText::prepareToPrint(ParagraphList::iterator pit, // Display-style insets should always be on a centred row // The test on pit->size() is to catch zero-size pars, which // would trigger the assert in Paragraph::getInset(). - inset = pit->size() ? pit->getInset(rit->pos()) : 0; + //inset = pit->size() ? pit->getInset(rit->pos()) : 0; + inset = pit->isInset(rit->pos()) ? pit->getInset(rit->pos()) : 0; if (inset && inset->display()) { align = LYX_ALIGN_CENTER; }