Changeset 818


Ignore:
Timestamp:
02/03/14 16:51:27 (10 years ago)
Author:
jts21
Message:

Lines with 0 thickness should still be drawn if they aren't part of an enclosed shape

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/io/PDF2Writer.java

    r817 r818  
    178178                                        cb.lineTo(end.getX(), height - end.getY());
    179179                                        cb.closePath();
    180                                         if(l.getThickness() > 0) {
     180                                        if(l.getThickness() >= 0) {
    181181                                                cb.setLineWidth(l.getThickness());
    182182                                                cb.setColorStroke(l.getColor());
Note: See TracChangeset for help on using the changeset viewer.