Changeset 999 in josm for trunk/src/org/openstreetmap/josm/gui/MapStatus.java
- Timestamp:
- 2008-09-21T14:03:38+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r861 r999 68 68 class ImageLabel extends JPanel { 69 69 private JLabel tf; 70 private JLabel lbl;71 70 private int chars; 72 71 public ImageLabel(String img, String tooltip, int chars) { … … 74 73 setLayout(new GridBagLayout()); 75 74 setBackground(Color.decode("#b8cfe5")); 76 add( lbl =new JLabel(ImageProvider.get("statusline/"+img+".png")), GBC.std().anchor(GBC.WEST).insets(0,1,1,0));75 add(new JLabel(ImageProvider.get("statusline/"+img+".png")), GBC.std().anchor(GBC.WEST).insets(0,1,1,0)); 77 76 add(tf = new JLabel(), GBC.std().fill(GBC.BOTH).anchor(GBC.WEST).insets(2,1,1,0)); 78 77 setToolTipText(tooltip);
Note:
See TracChangeset
for help on using the changeset viewer.