Ignore:
Timestamp:
2012-02-15T21:29:21+01:00 (12 years ago)
Author:
stoecker
Message:

fix some shortcut deprecations, move layer list toggle from <ALT>+<L> to <ALT>+<SHIFT>+<L> to free <ALT>+<L> for PicLayer menu

File:
1 edited

Legend:

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

    r4385 r4942  
    7979    public static class Undo extends JosmAction {
    8080        public Undo() {
    81             super(tr("Orthogonalize Shape / Undo"),
    82                     "ortho",
     81            super(tr("Orthogonalize Shape / Undo"), "ortho",
    8382                    tr("Undo orthogonalization for certain nodes"),
    8483                    Shortcut.registerShortcut("tools:orthogonalizeUndo", tr("Tool: {0}", tr("Orthogonalize Shape / Undo")),
    8584                            KeyEvent.VK_Q,
    86                             Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), false);
    87             putValue("toolbar", "action/orthogonalize/undo");
    88             Main.toolbar.register(this);
     85                            Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT1),
     86                    true, "action/orthogonalize/undo", true);
    8987        }
    9088        public void actionPerformed(ActionEvent e) {
Note: See TracChangeset for help on using the changeset viewer.