]> git.lyx.org Git - features.git/commitdiff
Reverted the reverted changes - 1.
authorJürgen Vigna <jug@sad.it>
Fri, 27 Apr 2001 14:21:18 +0000 (14:21 +0000)
committerJürgen Vigna <jug@sad.it>
Fri, 27 Apr 2001 14:21:18 +0000 (14:21 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1970 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/text.C

index af593e047d1b4825bbf63150f3ac5724e0c94d80..544e7601549bbf452216d5458dd9ca188590e39f 100644 (file)
@@ -1,3 +1,8 @@
+2001-04-27  Juergen Vigna  <jug@sad.it>
+
+       * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
+       (SetHeightOfRow): comment out the update call should not be needed!
+
 2001-04-13  Juergen Vigna  <jug@sad.it>
 
        * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
index 066717f57dca9dcb98cdeb450541da64fdf78449..f471ee82078fd405a6e64d3996202ec8d6b8919a 100644 (file)
@@ -1157,7 +1157,7 @@ LyXText::NextBreakPoint(BufferView * bview, Row const * row, int width) const
 int LyXText::Fill(BufferView * bview, Row * row, int paper_width) const
 {
        if (paper_width < 0)
-               return 0;
+               return 20;
 
        int w;
        // get the pure distance
@@ -1202,6 +1202,11 @@ int LyXText::Fill(BufferView * bview, Row * row, int paper_width) const
        }
        
        int const fill = paper_width - w - RightMargin(bview->buffer(), row);
+#waring Please fix me (Jug!)
+#if 0
+       if (fill < 0)
+               return 0;
+#endif
        return fill;
 }
 
@@ -1412,7 +1417,7 @@ void LyXText::SetHeightOfRow(BufferView * bview, Row * row_ptr) const
                   tmpfont = GetFont(bview->buffer(), row_ptr->par(), pos);
                   tmpinset = row_ptr->par()->GetInset(pos);
                   if (tmpinset) {
-                          tmpinset->update(bview, tmpfont);
+//                        tmpinset->update(bview, tmpfont);
                           asc = tmpinset->ascent(bview, tmpfont);
                           desc = tmpinset->descent(bview, tmpfont);
                           maxwidth += tmpinset->width(bview, tmpfont);