diff --git a/eeshow/kicad/sch-parse.c b/eeshow/kicad/sch-parse.c index 4d60da5..9cc3bbd 100644 --- a/eeshow/kicad/sch-parse.c +++ b/eeshow/kicad/sch-parse.c @@ -354,6 +354,8 @@ static struct sheet *recurse_sheet(struct sch_ctx *ctx, ctx->curr_sheet = parent; sheet->title = stralloc(other->title); sheet->objs = other->objs; + sheet->w = other->w; + sheet->h = other->h; return sheet; } }