mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
* 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:
parent
95cf1d65f3
commit
9d89b98987
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user