Changeset 32396 in osm for applications
- Timestamp:
- 2016-06-24T22:18:14+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/mapillary
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/gradle.properties
r32385 r32396 5 5 plugin.icon=images/icon24.png 6 6 plugin.link=https://wiki.openstreetmap.org/wiki/JOSM/Plugins/Mapillary 7 plugin.main.version=103 327 plugin.main.version=10369 8 8 plugin.requires=apache-commons;apache-http 9 9 plugin.version=1.1.5 -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterDialog.java
r32374 r32396 32 32 import org.openstreetmap.josm.plugins.mapillary.MapillaryImportedImage; 33 33 import org.openstreetmap.josm.plugins.mapillary.MapillaryLayer; 34 import org.openstreetmap.josm.tools.ImageProvider; 34 35 import org.openstreetmap.josm.tools.Shortcut; 35 36 … … 282 283 UpdateAction() { 283 284 putValue(NAME, tr("Update")); 285 new ImageProvider("dialogs", "refresh").getResource().attachImageIcon(this, true); 284 286 } 285 287 … … 298 300 ResetAction() { 299 301 putValue(NAME, tr("Reset")); 302 new ImageProvider("preferences", "reset").getResource().attachImageIcon(this, true); 300 303 } 301 304 -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryHistoryDialog.java
r32373 r32396 203 203 public UndoAction() { 204 204 putValue(NAME, tr("Undo")); 205 putValue(SMALL_ICON, ImageProvider.get("undo"));205 new ImageProvider("undo").getResource().attachImageIcon(this, true); 206 206 } 207 207 … … 218 218 public RedoAction() { 219 219 putValue(NAME, tr("Redo")); 220 putValue(SMALL_ICON, ImageProvider.get("redo"));220 new ImageProvider("redo").getResource().attachImageIcon(this, true); 221 221 } 222 222 -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java
r32374 r32396 455 455 putValue(NAME, tr("Stop")); 456 456 putValue(SHORT_DESCRIPTION, tr("Stops the walk.")); 457 putValue(SMALL_ICON, ImageProvider.get("dialogs/mapillaryStop.png"));457 new ImageProvider("dialogs/mapillaryStop.png").getResource().attachImageIcon(this, true); 458 458 MapillaryPlugin.getWalkAction().addListener(this); 459 459 } … … 482 482 putValue(NAME, tr("Play")); 483 483 putValue(SHORT_DESCRIPTION, tr("Continues with the paused walk.")); 484 putValue(SMALL_ICON, ImageProvider.get("dialogs/mapillaryPlay.png"));484 new ImageProvider("dialogs/mapillaryPlay.png").getResource().attachImageIcon(this, true); 485 485 MapillaryPlugin.getWalkAction().addListener(this); 486 486 } … … 511 511 putValue(NAME, tr("Pause")); 512 512 putValue(SHORT_DESCRIPTION, tr("Pauses the walk.")); 513 putValue(SMALL_ICON, ImageProvider.get("dialogs/mapillaryPause.png"));513 new ImageProvider("dialogs/mapillaryPause.png").getResource().attachImageIcon(this, true); 514 514 MapillaryPlugin.getWalkAction().addListener(this); 515 515 }
Note:
See TracChangeset
for help on using the changeset viewer.