Ignore:
Timestamp:
06/07/13 16:22:46 (11 years ago)
Author:
davidb
Message:

Additional work needed to support Nibb attribute for arrowhead tip thickness

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/Text.java

    r470 r475  
    23072307                setSize(getSize() * scale);
    23082308
    2309                 setWidth(Math.round(getWidth() * scale));
     2309                Integer width = getWidth();
     2310                if (width != null) {
     2311                        setWidth(Math.round(width * scale));
     2312                }
     2313               
    23102314                super.scale(scale, originX, originY);
    23112315                rebuild(true);
Note: See TracChangeset for help on using the changeset viewer.