Index: trunk/src_plugins/draw_csect/draw_csect.c =================================================================== --- trunk/src_plugins/draw_csect/draw_csect.c (revision 10529) +++ trunk/src_plugins/draw_csect/draw_csect.c (revision 10530) @@ -120,6 +120,8 @@ l.Point2.X = PCB_MM_TO_COORD(x2); l.Point2.Y = PCB_MM_TO_COORD(y2); l.Thickness = PCB_MM_TO_COORD(thick); + if (l.Thickness == 0) + l.Thickness = 1; _draw_line(&l); } @@ -132,6 +134,8 @@ l.Point2.X = x2; l.Point2.Y = y2; l.Thickness = PCB_MM_TO_COORD(thick); + if (l.Thickness == 0) + l.Thickness = 1; _draw_line(&l); }