Changeset 14282 in josm for trunk/src/org
- Timestamp:
- 2018-09-30T01:54:13+02:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/UndoRedoHandler.java
r14281 r14282 264 264 /** 265 265 * Determines if commands can be undone. 266 * @return { 14281true} if at least a command can be undone267 * @since xxx266 * @return {@code true} if at least a command can be undone 267 * @since 14281 268 268 */ 269 269 public boolean hasUndoCommands() { -
trunk/src/org/openstreetmap/josm/tools/KeyboardUtils.java
r14279 r14282 205 205 // https://en.wikipedia.org/wiki/German_keyboard_layout 206 206 result.add((char) KeyEvent.VK_DEAD_CIRCUMFLEX); 207 result.add('ˆ'); // U+02C6 : dead/modifier circumflex 207 208 break; 208 209 case "cs": // Czech … … 240 241 // https://en.wikipedia.org/wiki/QWERTY#Estonian 241 242 result.add((char) KeyEvent.VK_DEAD_CARON); // https://en.wikipedia.org/wiki/Caron 243 result.add('ˇ'); // U+02C7 : dead key/modifier 242 244 break; 243 245 case "is": // Icelandic … … 302 304 // Works also for Dvorak, https://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard 303 305 result.add('`'); // U+0060: On US QWERTY, this is not a dead key 306 result.add((char) KeyEvent.VK_DEAD_GRAVE); 304 307 result.add('ˋ'); // U+02CB: On International QWERTY, this is a dead key 305 308 return result;
Note:
See TracChangeset
for help on using the changeset viewer.