Changeset 162 in josm for src/org/openstreetmap


Ignore:
Timestamp:
2006-10-14T00:58:07+02:00 (18 years ago)
Author:
imi
Message:
  • fixed shortcuts (Alt-C was doubled, About was missing)
Location:
src/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/actions/AboutAction.java

    r148 r162  
    5555
    5656        public AboutAction() {
    57                 super(tr("About"), "about",tr("Display the about screen."), KeyEvent.VK_A);
     57                super(tr("About"), "about",tr("Display the about screen."), KeyEvent.VK_F1, KeyEvent.SHIFT_DOWN_MASK);
    5858        }
    5959
  • src/org/openstreetmap/josm/gui/dialogs/CommandStackDialog.java

    r119 r162  
    2929
    3030        public CommandStackDialog(final MapFrame mapFrame) {
    31                 super(tr("Command Stack"), "commandstack", tr("Open a list of all commands (undo buffer)."), KeyEvent.VK_C, 100);
     31                super(tr("Command Stack"), "commandstack", tr("Open a list of all commands (undo buffer)."), KeyEvent.VK_O, 100);
    3232                mapFrame.mapView.addLayerChangeListener(new LayerChangeListener(){
    3333                        public void activeLayerChange(Layer oldLayer, Layer newLayer) {}
Note: See TracChangeset for help on using the changeset viewer.