Changeset 26399 in osm for applications/editors


Ignore:
Timestamp:
2011-07-25T13:36:55+02:00 (13 years ago)
Author:
akks
Message:

'InfoMode : new icon, keys for exit mode'

Location:
applications/editors/josm/plugins/infomode
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/infomode/build.xml

    r26397 r26399  
    3030<project name="InfoMode" default="dist" basedir=".">
    3131    <!-- 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"/>
    3333    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    3434    <property name="plugin.main.version" value="4201"/>
     
    9898                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    9999                <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"/>
    101101                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/InfoMode"/>
    102102                <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  
    235235            repaint();
    236236        }
     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        }
    237242    }
    238243   
Note: See TracChangeset for help on using the changeset viewer.