mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-04 23:05:21 +02:00
eeshow/gui/render.c: NULL backpointers for delta; don't try to pl_render
This commit is contained in:
parent
28baddb59f
commit
de8f992158
@ -231,7 +231,7 @@ void render_sheet(struct gui_sheet *sheet)
|
||||
char *argv[] = { "gui", NULL };
|
||||
|
||||
gfx_init(&cro_canvas_ops, 1, argv);
|
||||
if (sheet->ctx->pl)
|
||||
if (sheet->ctx && sheet->ctx->pl) /* @@@ no pl_render for delta */
|
||||
pl_render(sheet->ctx->pl, sheet->hist->sch_ctx.sheets,
|
||||
sheet->sch);
|
||||
sch_render(sheet->sch);
|
||||
@ -261,6 +261,9 @@ void render_delta(struct gui_ctx *ctx)
|
||||
ctx->delta_b.sch = sch_b,
|
||||
ctx->delta_ab.sch = sch_ab,
|
||||
|
||||
ctx->delta_a.ctx = ctx->delta_b.ctx = ctx->delta_ab.ctx = NULL;
|
||||
ctx->delta_a.hist = ctx->delta_b.hist = ctx->delta_ab.hist = NULL;
|
||||
|
||||
render_sheet(&ctx->delta_a);
|
||||
render_sheet(&ctx->delta_b);
|
||||
render_sheet(&ctx->delta_ab);
|
||||
|
Loading…
Reference in New Issue
Block a user