Changeset 17373 in osm for applications/editors
- Timestamp:
- 2009-08-30T18:12:52+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/imagewaypoint
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagewaypoint/build.xml
r16294 r17373 26 26 <attribute name="Plugin-Description" value="Another plugin to match images to the waypoints in a GPX file. A match is made when the 'name', 'cmt' or 'desc' attribute of a waypoint tag matches the filename of an image."/> 27 27 <attribute name="Plugin-Early" value="false"/> 28 <attribute name="Plugin-Mainversion" value=" 1725"/>28 <attribute name="Plugin-Mainversion" value="2012"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/imagewaypoint/src/org/insignificant/josm/plugins/imagewaypoint/ImageWayPointLayer.java
r16294 r17373 28 28 @Override 29 29 public final void mouseClicked(final MouseEvent event) { 30 if (MouseEvent.BUTTON1 == event.getButton() && this.layer. visible) {30 if (MouseEvent.BUTTON1 == event.getButton() && this.layer.isVisible()) { 31 31 final ImageEntry[] images = ImageEntries.getInstance() 32 32 .getImages();
Note:
See TracChangeset
for help on using the changeset viewer.