Ignore:
Timestamp:
2015-10-15T19:28:31+02:00 (9 years ago)
Author:
niplecrumple
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/rasterfilters/src/org/openstreetmap/josm/plugins/rasterfilters/RasterFiltersPlugin.java

    r31509 r31635  
    8383                        FiltersDownloader.initFilters();
    8484
    85                         LayerListDialog dialog = Main.map
    86                                         .getToggleDialog(LayerListDialog.class);
    87 
    8885                        if (action == null) {
    8986                                action = new ShowLayerFiltersDialog();
     
    9794                                filterButton.setEnabled(false);
    9895                        }
     96
     97                        LayerListDialog dialog = LayerListDialog.getInstance();
    9998
    10099                        JPanel buttonRowPanel = (JPanel) ((JPanel) dialog.getComponent(2))
     
    123122
    124123                        Container container = filterButton.getParent();
    125                         container.remove(filterButton);
     124                        if (container != null)
     125                                container.remove(filterButton);
     126                       
    126127                        FiltersDownloader.destroyFilters();
    127128                        filterButton = null;
Note: See TracChangeset for help on using the changeset viewer.