Changeset 9454 in osm for applications/editors
- Timestamp:
- 2008-08-04T11:56:36+02:00 (17 years ago)
- Location:
- applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidatorDialog.java
r9270 r9454 74 74 add(new JScrollPane(tree), BorderLayout.CENTER); 75 75 76 JPanel buttonPanel = new JPanel(new GridLayout(1, 2));76 JPanel buttonPanel = new JPanel(new GridLayout(1,3)); 77 77 78 78 selectButton = Util.createButton(tr("Select"), "select", "mapmode/selection/select", -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/util/Util.java
r9111 r9454 3 3 import static org.openstreetmap.josm.tools.I18n.tr; 4 4 5 import java.awt.Insets; 5 6 import java.awt.event.ActionListener; 6 7 import java.awt.geom.Point2D; … … 50 51 button.addActionListener(action); 51 52 button.setToolTipText(tr(tooltip)); 53 button.setMargin(new Insets(1,1,1,1)); 54 button.setIconTextGap(2); 52 55 button.putClientProperty("help", "Dialog/SelectionList/" + actionname); 53 56 return button;
Note:
See TracChangeset
for help on using the changeset viewer.