Changeset 24502 in osm for applications/editors/josm/plugins/imagery/src
- Timestamp:
- 2010-12-01T22:30:31+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/AddImageryLayerAction.java ¶
r24501 r24502 13 13 14 14 public AddImageryLayerAction(ImageryInfo info) { 15 super(info.getMenuName(), " wmsmenu", tr("Add imagery layer {0}",info.getName()), null, false);15 super(info.getMenuName(), "imagery_menu", tr("Add imagery layer {0}",info.getName()), null, false); 16 16 putValue("toolbar", "imagery_" + info.getToolbarName()); 17 17 this.info = info; -
TabularUnified applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/ImageryAdjustAction.java ¶
r24501 r24502 37 37 38 38 public ImageryAdjustAction(MapFrame mapFrame) { 39 super(tr("Adjust imagery"), "adjust wms",39 super(tr("Adjust imagery"), "adjustimg", 40 40 tr("Adjust the position of the selected imagery layer"), mapFrame, 41 41 ImageProvider.getCursor("normal", "move")); -
TabularUnified applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/ImageryLayer.java ¶
r24501 r24502 14 14 15 15 public abstract class ImageryLayer extends Layer { 16 16 protected static final Icon icon = 17 new ImageIcon(Toolkit.getDefaultToolkit().createImage(ImageryPlugin.class.getResource("/images/imagery_small.png"))); 17 18 protected MapView mv; 18 19 … … 43 44 } 44 45 45 protected static final Icon icon =46 new ImageIcon(Toolkit.getDefaultToolkit().createImage(ImageryPlugin.class.getResource("/images/wms_small.png")));47 48 46 @Override 49 47 public Icon getIcon() { -
TabularUnified applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/ImageryPreferenceEditor.java ¶
r24501 r24502 52 52 @Override 53 53 public void addGui(final PreferenceTabbedPane gui) { 54 JPanel p = gui.createPreferenceTab(" wms", tr("Imagery Preferences"), tr("Modify list of imagery layers displayed in the Imagery menu"));54 JPanel p = gui.createPreferenceTab("imagery", tr("Imagery Preferences"), tr("Modify list of imagery layers displayed in the Imagery menu")); 55 55 56 56 model = new ImageryLayerTableModel();
Note:
See TracChangeset
for help on using the changeset viewer.