Changeset 33976 in osm for applications


Ignore:
Timestamp:
2018-01-04T16:20:11+01:00 (7 years ago)
Author:
stoecker
Message:

add proper shortcut names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/indoorhelper/src/controller/IndoorHelperController.java

    r33974 r33976  
    112112       // Shortcuts
    113113       SpaceShortcut = Shortcut.registerShortcut("mapmode:space",
    114                tr(""), KeyEvent.VK_SPACE, Shortcut.DIRECT);
     114               tr("IndoorHelper <SPACE> Shortcut"), KeyEvent.VK_SPACE, Shortcut.DIRECT);
    115115       this.SpaceAction = new SpaceAction();
    116116       MainApplication.registerActionShortcut(SpaceAction,SpaceShortcut);
    117117
    118118       EnterShortcut = Shortcut.registerShortcut("mapmode:ALT",
    119                tr(""), KeyEvent.VK_ENTER, Shortcut.DIRECT);
     119               tr("IndoorHelper <ENTER> Shortcut"), KeyEvent.VK_ENTER, Shortcut.DIRECT);
    120120       this.EnterAction = new EnterAction();
    121121       MainApplication.registerActionShortcut(EnterAction,EnterShortcut);
Note: See TracChangeset for help on using the changeset viewer.