Ignore:
Timestamp:
09/03/08 09:50:37 (16 years ago)
Author:
ra33
Message:

Added HTML styles

File:
1 edited

Legend:

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

    r286 r289  
    3636import org.expeditee.gui.FrameMouseActions;
    3737import org.expeditee.gui.FrameUtils;
     38import org.expeditee.gui.UserSettings;
    3839import org.expeditee.math.ExpediteeJEP;
    3940import org.nfunk.jep.Node;
     
    275276
    276277        public void setAttributeValue(String value) {
    277                 AttributeValuePair avp = new AttributeValuePair(getText(),false);
     278                AttributeValuePair avp = new AttributeValuePair(getText(), false);
    278279                avp.setValue(value);
    279280                setText(avp.toString());
     
    14261427                if (hasFormula()) {
    14271428                        g.setColor(getPaintHighlightColor());
    1428                         Stroke highlightStroke = new BasicStroke(
    1429                                         1F, CAP, JOIN);
     1429                        Stroke highlightStroke = new BasicStroke(1F, CAP, JOIN);
    14301430                        g.setStroke(highlightStroke);
    14311431
     
    15561556        public void setSize(float size) {
    15571557                invalidateAll();
     1558                //size *= UserSettings.ScaleFactor;
    15581559                // Dont want to have size set when duplicating a point which has size 0
    15591560                if (size < 0)
Note: See TracChangeset for help on using the changeset viewer.