1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-06-28 23:21:59 +03:00

eeshow/kicad/sch-parse.c (recurse_sheet): don't forget to copy sheet size

This commit is contained in:
Werner Almesberger 2016-08-22 13:20:29 -03:00
parent ef3d118c9e
commit bbd8c5507f

View File

@ -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;
}
}