Changeset 35096 in osm
- Timestamp:
- 2019-08-21T09:01:03+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/seachart/src/render
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/render/Rules.java
r35088 r35096 1001 1001 case LITMAJ: 1002 1002 case LNDMRK: 1003 Renderer.symbol(Beacons.LightMajor); 1003 1004 if (Renderer.zoom >= 12) { 1004 Renderer.symbol(Beacons.LightMajor);1005 1005 ok = true; 1006 } else { 1007 Signals.lights(); 1006 1008 } 1007 1009 break; -
applications/editors/josm/plugins/seachart/src/render/Signals.java
r35086 r35096 360 360 } 361 361 String str = ""; 362 if ( lights.get(1) != null) {362 if ((lights.get(1) != null) && (Renderer.zoom >= 12)) { 363 363 for (AttMap atts : lights.values()) { 364 364 Enum<ColCOL> col1 = null;
Note:
See TracChangeset
for help on using the changeset viewer.