Changeset 23179 in osm for applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySpec.java
- Timestamp:
- 2010-09-15T16:02:25+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySpec.java
r23176 r23179 172 172 dlg.cbM01Colour.setVisible(false); 173 173 dlg.lM01Colour.setVisible(false); 174 dlg.rbM01Fired1.setVisible(false); 175 dlg.rbM01FiredN.setVisible(false); 176 dlg.lM01Height.setVisible(false); 177 dlg.tfM01Height.setVisible(false); 178 dlg.lM01Range.setVisible(false); 179 dlg.tfM01Range.setVisible(false); 174 180 175 181 if (isFired()) { … … 200 206 image += "_Pillar"; //$NON-NLS-1$ 201 207 break; 208 case SPEC_CAN: 209 image += "_Can"; //$NON-NLS-1$ 210 break; 211 case SPEC_CONE: 212 image += "_Cone"; //$NON-NLS-1$ 213 break; 202 214 case SPEC_SPAR: 203 215 image += "_Spar"; //$NON-NLS-1$ … … 222 234 223 235 if (!image.equals("/images/Special_Purpose")) { //$NON-NLS-1$ 224 if (hasTopMark())225 image += "_CrossY"; //$NON-NLS-1$236 // if (hasTopMark()) 237 // image += "_CrossY"; //$NON-NLS-1$ 226 238 image += ".png"; //$NON-NLS-1$ 227 239 dlg.lM01Icon.setIcon(new ImageIcon(getClass().getResource(image)));
Note:
See TracChangeset
for help on using the changeset viewer.