Ignore:
Timestamp:
2020-03-21T09:42:31+01:00 (5 years ago)
Author:
malcolmh
Message:

add new jchart utility

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/render/Signals.java

    r35114 r35388  
    469469                    str += "." + df.format(atts.get(Att.SIGPER).val) + "s";
    470470                }
    471                 if ((s1 <= 360) && (s2 <= 360) && (s1 != s2))
     471                if ((s1 < 360) && (s2 < 360) && (s1 != s2))
    472472                    Renderer.lightSector(LightColours.get(col1), LightColours.get(col2), radius, s1, s2, dir, (Renderer.zoom >= 15) ? str : "");
    473473            }
Note: See TracChangeset for help on using the changeset viewer.