Changeset 12320 in josm for trunk/src/org
- Timestamp:
- 2017-06-06T01:27:55+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/JosmAction.java
r12051 r12320 76 76 setHelpId(); 77 77 sc = shortcut; 78 if (sc != null ) {78 if (sc != null && !sc.isAutomatic()) { 79 79 Main.registerActionShortcut(this, sc); 80 80 } … … 215 215 @Override 216 216 public void destroy() { 217 if (sc != null ) {217 if (sc != null && !sc.isAutomatic()) { 218 218 Main.unregisterActionShortcut(this); 219 219 } -
trunk/src/org/openstreetmap/josm/tools/PlatformHook.java
r12279 r12320 80 80 * it or registered from within the application. 81 81 * 82 * Ple se note that you are not allowed to register any82 * Please note that you are not allowed to register any 83 83 * shortuts from this hook, but only "systemCuts"! 84 84 *
Note:
See TracChangeset
for help on using the changeset viewer.