mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-22 21:32:29 +02:00
eeshow/main.c (main): draw page layout also in non-interactive mode
This commit is contained in:
parent
7e6d35760e
commit
af626042f8
@ -285,11 +285,15 @@ found:
|
|||||||
for (sheet = sch_ctx.sheets; sheet; sheet = sheet->next) {
|
for (sheet = sch_ctx.sheets; sheet; sheet = sheet->next) {
|
||||||
gfx_sheet_name(sheet->title);
|
gfx_sheet_name(sheet->title);
|
||||||
sch_render(sheet);
|
sch_render(sheet);
|
||||||
|
if (pl)
|
||||||
|
pl_render(pl, sch_ctx.sheets, sheet);
|
||||||
if (sheet->next)
|
if (sheet->next)
|
||||||
gfx_new_sheet();
|
gfx_new_sheet();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
sch_render(sch_ctx.sheets);
|
sch_render(sch_ctx.sheets);
|
||||||
|
if (pl)
|
||||||
|
pl_render(pl, sch_ctx.sheets, sch_ctx.sheets);
|
||||||
}
|
}
|
||||||
gfx_end();
|
gfx_end();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user