Changeset 11040 in josm for trunk/src/org
- Timestamp:
- 2016-09-22T23:01:34+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/GettingStarted.java
r11031 r11040 6 6 import java.awt.BorderLayout; 7 7 import java.awt.EventQueue; 8 import java.awt.event.InputEvent;9 import java.awt.event.KeyEvent;10 8 import java.io.IOException; 11 9 import java.net.URL; … … 17 15 import javax.swing.JPanel; 18 16 import javax.swing.JScrollPane; 19 import javax.swing.KeyStroke;20 17 import javax.swing.border.EmptyBorder; 21 18 import javax.swing.event.HyperlinkEvent; -
trunk/src/org/openstreetmap/josm/gui/dialogs/MenuItemSearchDialog.java
r11031 r11040 113 113 public static class Action extends JosmAction { 114 114 115 // CHECKSTYLE.OFF: LineLength 116 /** Action shortcut (ctrl / space by default */ 115 117 public static final Shortcut SHORTCUT = Shortcut.registerShortcut("help:search-items", "Search menu items", KeyEvent.VK_SPACE, Shortcut.CTRL); 118 // CHECKSTYLE.ON: LineLength 116 119 120 /** 121 * Constructs a new {@code Action}. 122 */ 117 123 public Action() { 118 124 super(tr("Search menu items"), "dialogs/search", null,
Note:
See TracChangeset
for help on using the changeset viewer.