* src/rowpainter.cpp:

- draw appendix frame only for the main text.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19100 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-07-17 13:35:32 +00:00
parent 95cf1d65f3
commit 9d89b98987

View File

@ -471,7 +471,8 @@ void RowPainter::paintChangeBar()
void RowPainter::paintAppendix()
{
if (!par_.params().appendix())
// only draw the appendix frame once (for the main text)
if (!par_.params().appendix() || !text_.isMainText(*bv_.buffer()))
return;
int y = yo_ - row_.ascent();