Index: trunk/src_plugins/export_ps/ps.c =================================================================== --- trunk/src_plugins/export_ps/ps.c (revision 28548) +++ trunk/src_plugins/export_ps/ps.c (revision 28549) @@ -715,11 +715,13 @@ if (flags & PCB_LYT_NOEXPORT) return 0; - if (is_empty) - return 0; + if (!PCB_LAYER_IS_OUTLINE(flags, purpi)) { /* outline layer can never be empty, because of the implicit outline */ + if (is_empty) + return 0; - if ((group >= 0) && pcb_layergrp_is_empty(PCB, group)) - return 0; + if ((group >= 0) && pcb_layergrp_is_empty(PCB, group)) + return 0; + } if (flags & PCB_LYT_INVIS) return 0;