Changeset 27764 in osm
- Timestamp:
- 2012-02-15T20:38:43+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/customurl/ChooseURLAction.java
r27761 r27764 61 61 } 62 62 final JLabel label1=new JLabel(tr("Please select one of custom URLs (configured in Preferences)")); 63 final JList <String>list1=new JList<String>(names);63 final JList list1=new JList(names); 64 64 final JTextField editField=new JTextField(); 65 65 final JCheckBox check1=new JCheckBox(tr("Ask every time")); -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/dumbutils/SplitOnIntersectionsAction.java
r27564 r27764 26 26 public SplitOnIntersectionsAction() { 27 27 super(TITLE, "dumbutils/splitonintersections", tr("Split adjacent ways on T-intersections"), 28 Shortcut.registerShortcut("tools:splitonintersections", tr("Tool: {0}", tr("Split adjacent ways")), KeyEvent.VK_P, Shortcut.GROUP_MENU, KeyEvent.CTRL_DOWN_MASK | KeyEvent.ALT_DOWN_MASK| KeyEvent.SHIFT_DOWN_MASK)29 , true); 28 Shortcut.registerShortcut("tools:splitonintersections", tr("Tool: {0}", tr("Split adjacent ways")), 29 KeyEvent.VK_P, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1), true); 30 30 } 31 31
Note:
See TracChangeset
for help on using the changeset viewer.