Changeset 36389 in osm
- Timestamp:
- 2025-02-15T12:40:48+01:00 (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/latlon/LatLonDialog.java
r36362 r36389 94 94 bgType = new ButtonGroup(); 95 95 96 rbNodes = new JRadioButton( "Nodes", true);96 rbNodes = new JRadioButton(tr("Nodes"), true); 97 97 rbNodes.setActionCommand("nodes"); 98 98 bgType.add(rbNodes); 99 99 pnl.add(rbNodes); 100 100 101 rbWay = new JRadioButton( "Way");101 rbWay = new JRadioButton(tr("Way")); 102 102 rbWay.setActionCommand("way"); 103 103 bgType.add(rbWay); 104 104 pnl.add(rbWay); 105 105 106 rbClosedWay = new JRadioButton("Closed Way (Area)"); 106 rbClosedWay = new JRadioButton(tr("Closed Way (Area)")); 107 107 rbClosedWay.setActionCommand("area"); 108 108 bgType.add(rbClosedWay);
Note:
See TracChangeset
for help on using the changeset viewer.