Changeset 12472 in osm
- Timestamp:
- 2008-12-22T14:07:54+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/wmsplugin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/build.xml
r12187 r12472 56 56 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 57 57 <attribute name="Plugin-Description" value="Allows external WMS resources to be displayed." /> 58 <attribute name="Plugin-Mainversion" value="1 065" />58 <attribute name="Plugin-Mainversion" value="1153" /> 59 59 </manifest> 60 60 </jar> -
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPlugin.java
r12458 r12472 212 212 if (oldFrame==null && newFrame!=null) { 213 213 setEnabledAll(true); 214 Main.map.toolBarActions.addSeparator(); 215 IconToggleButton tb = new IconToggleButton 216 (new WMSAdjustAction(Main.map)); 217 Main.map.toolBarActions.add(tb); 218 Main.map.toolGroup.add((AbstractButton)tb); 214 Main.map.addMapMode(new IconToggleButton 215 (new WMSAdjustAction(Main.map))); 219 216 } else if (oldFrame!=null && newFrame==null ) { 220 217 setEnabledAll(false);
Note:
See TracChangeset
for help on using the changeset viewer.