Changeset 23493 in osm for applications/editors


Ignore:
Timestamp:
2010-10-07T07:15:09+02:00 (14 years ago)
Author:
malcolmh
Message:

table deletion

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/plugs/lights/src/lights/Lights.java

    r23479 r23493  
    1212import java.awt.event.ActionListener;
    1313import java.awt.Dimension;
    14 
    1514
    1615import smed.plug.ifc.SmedPluggable;
     
    4039        @Override
    4140        public boolean stop() {
    42                 if(sectors != null) {
     41                if (sectors != null) {
    4342                        sectors.setVisible(false);
    4443                        sectors.dispose();
     
    8180        public boolean hasFocus() {
    8281                manager.showVisualMessage(msg);
    83                 if(rbFiredN != null)
    84                         if(rbFiredN.isSelected()) sectors.setVisible(true);
     82                if (rbFiredN != null)
     83                        if (rbFiredN.isSelected())
     84                                sectors.setVisible(true);
    8585                return true;
    8686        }
     
    8888        @Override
    8989        public boolean lostFocus() {
    90                 if(sectors != null) sectors.setVisible(false);
     90                if (sectors != null)
     91                        sectors.setVisible(false);
    9192                return true;
    9293        }
     
    128129                                                }
    129130                                                sectors.setVisible(true);
     131                                        } else if (sectors != null) {
     132                                                sectors.setVisible(false);
     133                                                sectors.dispose();
    130134                                        }
    131135                                }
Note: See TracChangeset for help on using the changeset viewer.