From 03a97df404a98c010292d2d7226dda0388a2ec49 Mon Sep 17 00:00:00 2001 From: Stefan Frederik Date: Mon, 21 Jun 2021 19:11:36 +0200 Subject: [PATCH] correctly redraw schematic at end of hierarchical pdf export (full zoom and draw) --- src/spice_netlist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/spice_netlist.c b/src/spice_netlist.c index 48c01fdf..1d4a480d 100644 --- a/src/spice_netlist.c +++ b/src/spice_netlist.c @@ -95,6 +95,8 @@ void hier_psprint(void) /* netlister driver */ unselect_all(); load_schematic(1, xctx->sch[xctx->currsch], 0); ps_draw(4); /* trailer */ + zoom_full(0, 0, 1, 0.97); + draw(); }