Changeset 8510 in josm for trunk/src/org/openstreetmap/josm/tools/MultikeyShortcutAction.java
- Timestamp:
- 2015-06-20T23:42:21+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/MultikeyShortcutAction.java
r7937 r8510 23 23 public char getShortcut() { 24 24 if (index < 9) 25 return (char)('1' + index); 25 return (char) ('1' + index); 26 26 else if (index == 9) 27 27 return '0'; 28 28 else 29 return (char)('A' + index - 10); 29 return (char) ('A' + index - 10); 30 30 } 31 31 … … 38 38 39 39 void executeMultikeyAction(int index, boolean repeatLastAction); 40 40 41 List<MultikeyInfo> getMultikeyCombinations(); 42 41 43 MultikeyInfo getLastMultikeyAction(); 42 44
Note:
See TracChangeset
for help on using the changeset viewer.
