Andre Poenitz <[EMAIL PROTECTED]> writes: | Index: text2.C | =================================================================== | RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/text2.C,v | retrieving revision 1.384 | diff -u -p -r1.384 text2.C | --- text2.C 15 Jul 2003 08:26:16 -0000 1.384 | +++ text2.C 15 Jul 2003 10:08:29 -0000 | @@ -2288,15 +2288,15 @@ ParagraphList & LyXText::ownerParagraphs | } | | | -LyXText::refresh_status LyXText::refreshStatus() const | +bool LyXText::needRefresh() const | { | - return refresh_status_; | + return need_refresh_; | } | | | void LyXText::clearPaint() | { | - refresh_status_ = REFRESH_NONE; | + need_refresh_ = true; | refresh_row = rows().end(); | refresh_y = 0; | }
Is this correct? Shouldn't it be false? (Or is this the buf fix?) -- Lgb