Changeset 189


Ignore:
Timestamp:
08/05/08 12:48:39 (16 years ago)
Author:
ra33
Message:
 
Location:
trunk/src/org/expeditee
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/Popup.java

    r188 r189  
    11package org.expeditee.gui;
    22
    3 import java.awt.BasicStroke;
    43import java.awt.Component;
    54import java.awt.Container;
    65import java.awt.Graphics;
    7 import java.awt.Graphics2D;
    86import java.awt.LayoutManager;
    9 import java.awt.Stroke;
    107
    118import javax.swing.JComponent;
     
    2522public abstract class Popup extends JPanel {
    2623       
    27         public static final float BORDER_THICKNESS = 0.0F;
    28         private static final Stroke _lineStroke = new BasicStroke(BORDER_THICKNESS);
     24        //Mike says: Can we get the border for the IW to which this popup corresponds?
     25        public static final float BORDER_THICKNESS = 1.0F;
     26//      private static final Stroke _lineStroke = new BasicStroke(BORDER_THICKNESS);
    2927       
    3028        private boolean _isReadyToPaint = false;
  • trunk/src/org/expeditee/items/InteractiveWidget.java

    r188 r189  
    11071107         */
    11081108        public float getMinimumBorderThickness() {
    1109                 return 2.0F;
     1109                return 1.0F;
    11101110        }
    11111111}
  • trunk/src/org/expeditee/items/SampleWidget2.java

    r188 r189  
    8383                        };
    8484        }
    85 
    86        
    87         @Override
    88         public float getMinimumBorderThickness() {
    89                 return 1.0F;
    90         }
    9185}
Note: See TracChangeset for help on using the changeset viewer.