Changeset 26399 in osm for applications/editors
- Timestamp:
- 2011-07-25T13:36:55+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/infomode
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/infomode/build.xml
r26397 r26399 30 30 <project name="InfoMode" default="dist" basedir="."> 31 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value="InfoMode : link and velocity works, shift=highlight track"/>32 <property name="commit.message" value="InfoMode : new icon, keys for exit mode"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 34 <property name="plugin.main.version" value="4201"/> … … 98 98 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 99 99 <attribute name="Plugin-Description" value="Extra information about current layer objects pop ups - currently GPX trackpoint info"/> 100 <!-- <attribute name="Plugin-Icon" value="..."/> -->100 <attribute name="Plugin-Icon" value="images/mapmode/infomode.png"/> 101 101 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/InfoMode"/> 102 102 <attribute name="ru_Plugin-Link" value="http://wiki.openstreetmap.org/wiki/RU:JOSM/Plugins/InfoMode"/> -
applications/editors/josm/plugins/infomode/src/org/openstreetmap/josm/plugins/infomode/InfoMode.java
r26397 r26399 235 235 repaint(); 236 236 } 237 if (e.getKeyCode() == KeyEvent.VK_BACK_SLASH || 238 e.getKeyCode() == KeyEvent.VK_ENTER || 239 e.getKeyCode() == KeyEvent.VK_ESCAPE) { 240 Main.map.selectSelectTool(false); 241 } 237 242 } 238 243
Note:
See TracChangeset
for help on using the changeset viewer.