Ignore:
Timestamp:
2010-09-14T14:50:20+02:00 (14 years ago)
Author:
malcolmh
Message:

break

File:
1 edited

Legend:

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

    r23141 r23155  
    2626
    2727                resetMask();
     28
     29                dlg.cbM01TypeOfMark.setSelectedIndex(SAFE_WATER);
    2830
    2931                dlg.cbM01StyleOfMark.removeAllItems();
     
    3739                dlg.lM01StyleOfMark.setVisible(true);
    3840
    39                 refreshLights();
    40                
    4141                setBuoyIndex(SAFE_WATER);
    4242                setColour(SeaMark.RED_WHITE);
     
    7474                }
    7575
    76                 if (keys.containsKey("seamark:light:colour")) { //$NON-NLS-1$
    77                         str = keys.get("seamark:light:colour"); //$NON-NLS-1$
    78 
    79                         if (keys.containsKey("seamark:light:character")) { //$NON-NLS-1$
    80                                 setLightGroup(keys);
    81                                 String c = keys.get("seamark:light:character"); //$NON-NLS-1$
    82                                 if (getLightGroup() != "") //$NON-NLS-1$
    83                                         c = c + "(" + getLightGroup() + ")"; //$NON-NLS-1$ //$NON-NLS-2$
    84                                 setLightChar(c);
    85                                 setLightPeriod(keys);
    86                         }
    87 
    88                         if (str.equals("white")) { //$NON-NLS-1$
    89                                 setFired(true);
    90                                 setLightColour("W"); //$NON-NLS-1$
    91                         }
    92                 }
    93 
     76                if (getStyleIndex() >= dlg.cbM01StyleOfMark.getItemCount())
     77                        setStyleIndex(0);
     78                dlg.cbM01StyleOfMark.setSelectedIndex(getStyleIndex());
     79               
    9480                if (keys.containsKey("seamark:topmark:shape") //$NON-NLS-1$
    9581                                || keys.containsKey("seamark:topmark:colour")) { //$NON-NLS-1$
    9682                        setTopMark(true);
    9783                }
     84
     85                parseLights(keys);
     86                refreshLights();
    9887        }
    9988
     
    10493                dlg.cbM01Kennung.addItem("Oc"); //$NON-NLS-1$
    10594                dlg.cbM01Kennung.addItem("LFl"); //$NON-NLS-1$
    106                 dlg.cbM01Kennung.addItem("Mo()"); //$NON-NLS-1$
     95                dlg.cbM01Kennung.addItem("Mo"); //$NON-NLS-1$
    10796                dlg.cbM01Kennung.setSelectedIndex(0);
    10897        }
Note: See TracChangeset for help on using the changeset viewer.