Ignore:
Timestamp:
2010-08-03T18:33:20+02:00 (14 years ago)
Author:
malcolmh
Message:

daily

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyNota.java

    r22527 r22557  
    5757                dlg.cbM01StyleOfMark.addItem("Major Light");
    5858                dlg.cbM01StyleOfMark.addItem("Minor Light");
     59                dlg.cbM01StyleOfMark.addItem("Light Float");
     60                dlg.cbM01StyleOfMark.addItem("Lighthouse");
    5961
    6062                if (style >= dlg.cbM01StyleOfMark.getItemCount())
     
    7981                switch (getStyleIndex()) {
    8082                case SeaMark.LIGHT_MAJOR:
     83                case SeaMark.LIGHT_HOUSE:
    8184                        dlg.lM01Icon01.setIcon(new ImageIcon(getClass().getResource(
    8285                                        "/images/Light_Major.png")));
     
    8689                        dlg.lM01Icon01.setIcon(new ImageIcon(getClass().getResource(
    8790                                        "/images/Light_Minor.png")));
     91                        break;
     92
     93                case SeaMark.LIGHT_FLOAT:
     94                        dlg.lM01Icon01.setIcon(new ImageIcon(getClass().getResource(
     95                                        "/images/Major_Float.png")));
    8896                        break;
    8997
     
    116124                case LIGHT_MINOR:
    117125                        super.saveSign("minor_light");
     126                        break;
     127                case LIGHT_FLOAT:
     128                        super.saveSign("major_floating_light");
    118129                        break;
    119130                default:
Note: See TracChangeset for help on using the changeset viewer.