Index: /applications/editors/josm/plugins/photoadjust/README
===================================================================
--- /applications/editors/josm/plugins/photoadjust/README	(revision 30935)
+++ /applications/editors/josm/plugins/photoadjust/README	(revision 30936)
@@ -24,12 +24,4 @@
       self made text (CC0)
     License: GPL v2 or later
-  images/togglegit.png:
-    combination of:
-      JOSM images/dialogs/geoimage/gpx2img.png
-           images/dialogs/geoimage/photo-marker.png
-        Author: JOSM contributors and others, see JOSM CONTRIBUTION
-        License: GNU General Public License v2 or later
-      self made arrows (CC0)
-    License: GPL v2 or later
   images/photoadjust.png:
     combination of:
Index: /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustPlugin.java
===================================================================
--- /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustPlugin.java	(revision 30935)
+++ /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustPlugin.java	(revision 30936)
@@ -35,5 +35,4 @@
     public PhotoAdjustPlugin(PluginInformation info) {
 	super(info);
-        GeoImageLayer.registerMenuAddition(new ToggleGeoImageThumbAction());
         GeoImageLayer.registerMenuAddition(new UntaggedGeoImageLayerAction());
         worker = new PhotoAdjustWorker();
Index: plications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/ToggleGeoImageThumbAction.java
===================================================================
--- /applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/ToggleGeoImageThumbAction.java	(revision 30935)
+++ 	(revision )
@@ -1,61 +1,0 @@
-package org.openstreetmap.josm.plugins.photoadjust;
-
-import static org.openstreetmap.josm.tools.I18n.tr;
-
-import java.awt.Component;
-import java.awt.event.ActionEvent;
-import java.util.List;
-import javax.swing.AbstractAction;
-import javax.swing.JMenuItem;
-
-import org.openstreetmap.josm.Main;
-import org.openstreetmap.josm.gui.dialogs.LayerListDialog;
-import org.openstreetmap.josm.gui.layer.Layer;
-import org.openstreetmap.josm.gui.layer.Layer.LayerAction;
-import org.openstreetmap.josm.gui.layer.geoimage.GeoImageLayer;
-import org.openstreetmap.josm.tools.ImageProvider;
-
-/**
- * Toggle the image display between thumbnails and symbols.
- */
-class ToggleGeoImageThumbAction extends AbstractAction implements LayerAction {
-
-    /** Define menu entry (text and image). */
-    public ToggleGeoImageThumbAction() {
-        super(tr("Toggle the image thumbnail preview"),
-              ImageProvider.get("togglegit"));
-    }
-
-    /** Get the layer this menu entry belongs to. */
-    private GeoImageLayer getSelectedLayer() {
-        return (GeoImageLayer)LayerListDialog.getInstance().getModel()
-            .getSelectedLayers().get(0);
-    }
-
-    /** This is called after the menu entry was selected. */
-    @Override
-    public void actionPerformed(ActionEvent arg0) {
-	GeoImageLayer layer = getSelectedLayer();
-	layer.setUseThumbs(!layer.isUseThumbs());
-	Main.map.mapView.repaint();
-    }
-
-    /** Check if there is any suitable image to be toggled. */
-    private boolean enabled(GeoImageLayer layer) {
-        return layer.getImages().size() > 0;
-    }
-
-    /** Create actual menu entry and define if it is enabled or not. */
-    @Override
-    public Component createMenuComponent() {
-        JMenuItem toggleItem = new JMenuItem(this);
-        toggleItem.setEnabled(enabled(getSelectedLayer()));
-        return toggleItem;
-    }
-
-    /** Check if the current layer is supported. */
-    @Override
-    public boolean supportLayers(List<Layer> layers) {
-        return layers.size() == 1 && layers.get(0) instanceof GeoImageLayer;
-    }
-}
