Index: eps.c =================================================================== --- eps.c (revision 26447) +++ eps.c (revision 26448) @@ -246,6 +246,7 @@ static int saved_layer_stack[PCB_MAX_LAYER]; pcb_box_t tmp, region; pcb_hid_expose_ctx_t ctx; + pcb_xform_t *xform = NULL, xform_tmp; options_ = options; @@ -322,8 +323,15 @@ if (f != NULL) eps_print_header(f, pcb_hid_export_fn(filename)); + if (as_shown) { + /* disable (exporter default) hiding overlay in as_shown */ + memset(&xform_tmp, 0, sizeof(xform_tmp)); + xform = &xform_tmp; + xform_tmp.omit_overlay = 0; + } + ctx.view = *bounds; - pcbhl_expose_main(&eps_hid, &ctx, NULL); + pcbhl_expose_main(&eps_hid, &ctx, xform); eps_print_footer(f);