Changeset 28455 in osm for applications/editors/josm
- Timestamp:
- 2012-06-24T20:25:57+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/seamarks/SeaMark.java
r28443 r28455 2624 2624 } 2625 2625 2626 for (int i = 0; i < sectors.size(); i++) {2626 for (int i = (sectors.size() > 1 ? 1 : 0); i < sectors.size(); i++) { 2627 2627 String secStr = (i == 0) ? "" : (":" + Integer.toString(i)); 2628 2628 if (sectors.get(i)[0] != Col.UNKCOL) 2629 2629 if ((sectors.get(i)[15] != Col.UNKCOL) && ((String)sectors.get(i)[1]).contains("Al")) 2630 Main.main.undoRedo.add(new ChangePropertyCommand(node, "seamark:light" + secStr + ":colour", (ColSTR.get(sectors.get(i)[0])) 2631 + ";" + ColSTR.get(sectors.get(i)[15]))); 2630 Main.main.undoRedo.add(new ChangePropertyCommand(node, "seamark:light" + secStr + ":colour", (ColSTR.get(sectors.get(i)[0])) + ";" + ColSTR.get(sectors.get(i)[15]))); 2632 2631 else 2633 2632 Main.main.undoRedo.add(new ChangePropertyCommand(node, "seamark:light" + secStr + ":colour", ColSTR.get(sectors.get(i)[0])));
Note:
See TracChangeset
for help on using the changeset viewer.