Changeset 35096 in osm


Ignore:
Timestamp:
2019-08-21T09:01:03+02:00 (5 years ago)
Author:
malcolmh
Message:

[Seachart] Publish new release

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  
    10011001                case LITMAJ:
    10021002                case LNDMRK:
     1003            Renderer.symbol(Beacons.LightMajor);
    10031004                        if (Renderer.zoom >= 12) {
    1004                                 Renderer.symbol(Beacons.LightMajor);
    10051005                                ok = true;
     1006                        } else {
     1007                            Signals.lights();
    10061008                        }
    10071009                        break;
  • applications/editors/josm/plugins/seachart/src/render/Signals.java

    r35086 r35096  
    360360        }
    361361        String str = "";
    362         if (lights.get(1) != null) {
     362        if ((lights.get(1) != null) && (Renderer.zoom >= 12)) {
    363363            for (AttMap atts : lights.values()) {
    364364                Enum<ColCOL> col1 = null;
Note: See TracChangeset for help on using the changeset viewer.