Changeset 488 in josm


Ignore:
Timestamp:
2007-12-14T20:56:47+01:00 (17 years ago)
Author:
gebner
Message:

Change the shortcut for wireframe mode to ctrl-w so that it doesn't clash with
the WMS plugin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainMenu.java

    r486 r488  
    164164        final JCheckBoxMenuItem wireframe = new JCheckBoxMenuItem(tr("Wireframe view"));
    165165        wireframe.setSelected(Main.pref.getBoolean("draw.wireframe", true));     
    166         wireframe.setAccelerator(KeyStroke.getKeyStroke("alt W"));
     166        wireframe.setAccelerator(KeyStroke.getKeyStroke("ctrl W"));
    167167        wireframe.addActionListener(new ActionListener() {
    168168                public void actionPerformed(ActionEvent ev) {
Note: See TracChangeset for help on using the changeset viewer.