Changeset 23375 in osm for applications/editors/josm/plugins/toms
- Timestamp:
- 2010-09-27T11:55:45+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/toms/src/toms/seamarks/buoys
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/Buoy.java
r23287 r23375 634 634 635 635 c = getLightChar(); 636 dlg.cbM01Kennung.setSelectedItem(c); 636 637 if (c.contains("+")) { 637 638 i1 = c.indexOf("+"); … … 643 644 if (tmp != null) 644 645 c = c + tmp; 645 } 646 dlg.cbM01Kennung.setSelectedItem(c); 647 if ((dlg.cbM01Kennung.getSelectedIndex() != 0) 648 && (!getLightGroup().isEmpty()) 649 || (((String) dlg.cbM01Kennung.getSelectedItem()).contains("(")) 650 && !(((String) dlg.cbM01Kennung.getSelectedItem()).contains("+"))) { 646 dlg.cbM01Kennung.setSelectedItem(c); 647 } else if (!getLightGroup().isEmpty()) 651 648 c = c + "(" + getLightGroup() + ")"; 649 if (dlg.cbM01Kennung.getSelectedIndex() == 0) 652 650 dlg.cbM01Kennung.setSelectedItem(c); 653 }654 651 c = c + " " + getLightColour(); 655 652 lp = getLightPeriod(); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyCard.java
r23308 r23375 193 193 dlg.cM01Fired.setEnabled(true); 194 194 dlg.cM01Fired.setVisible(true); 195 dlg.tfM01Group.setVisible(false); 196 dlg.lM01Group.setVisible(false); 195 197 if (!isSectored()) { 196 198 dlg.cbM01Colour.setVisible(false); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyLat.java
r23372 r23375 277 277 refreshStyles(); 278 278 refreshLights(); 279 setLightColour();280 279 parseLights(keys); 281 280 parseFogRadar(keys); 281 setLightColour(); 282 282 283 283 dlg.cbM01CatOfMark.setSelectedIndex(getBuoyIndex());
Note:
See TracChangeset
for help on using the changeset viewer.