Changeset 17779 in josm
- Timestamp:
- 2021-04-13T23:31:25+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/PlatformHook.java
r17679 r17779 108 108 * 109 109 * Please note that you are not allowed to register any 110 * short uts from this hook, but only "systemCuts"!110 * shortcuts from this hook, but only "systemCuts"! 111 111 * 112 112 * BTW: SystemCuts should be named "system:<whatever>", 113 * and it'd be best if sou'd recycle the names already used113 * and it'd be best if you'd recycle the names already used 114 114 * by the Windows and OSX hooks. Especially the later has 115 115 * really many of them. -
trunk/src/org/openstreetmap/josm/tools/PlatformHookOsx.java
r17739 r17779 346 346 auto(Shortcut.registerSystemShortcut("system:about", tr("reserved"), 0, -1)); // About 347 347 348 Shortcut.registerSystemShortcut("view:zoomin", tr("reserved"), KeyEvent.VK_ADD, KeyEvent.META_DOWN_MASK); // Zoom in349 Shortcut.registerSystemShortcut("view:zoomout", tr("reserved"), KeyEvent.VK_SUBTRACT, KeyEvent.META_DOWN_MASK); // Zoom out348 //Shortcut.registerSystemShortcut("view:zoomin", tr("reserved"), KeyEvent.VK_ADD, KeyEvent.META_DOWN_MASK); // Zoom in 349 //Shortcut.registerSystemShortcut("view:zoomout", tr("reserved"), KeyEvent.VK_SUBTRACT, KeyEvent.META_DOWN_MASK); // Zoom out 350 350 // CHECKSTYLE.ON: LineLength 351 351 }
Note:
See TracChangeset
for help on using the changeset viewer.