Changeset 469 in josm for trunk/src/org


Ignore:
Timestamp:
2007-11-23T09:21:51+01:00 (16 years ago)
Author:
gebner
Message:

Remove ctrl+shift escapes from most actions.

Location:
trunk/src/org/openstreetmap/josm/actions
Files:
8 edited

Legend:

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

    r301 r469  
    2828
    2929        public AlignInCircleAction() {
    30                 super(tr("Align Nodes in Circle"), "aligncircle", tr("Move the selected nodes into a circle."), KeyEvent.VK_O, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);
     30                super(tr("Align Nodes in Circle"), "aligncircle", tr("Move the selected nodes into a circle."), KeyEvent.VK_O, 0, true);
    3131        }
    3232
  • trunk/src/org/openstreetmap/josm/actions/AlignInLineAction.java

    r301 r469  
    2828
    2929        public AlignInLineAction() {
    30                 super(tr("Align Nodes in Line"), "alignline", tr("Move the selected nodes onto a line."), KeyEvent.VK_L, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);
     30                super(tr("Align Nodes in Line"), "alignline", tr("Move the selected nodes onto a line."), KeyEvent.VK_L, 0, true);
    3131        }
    3232
  • trunk/src/org/openstreetmap/josm/actions/CombineWayAction.java

    r429 r469  
    4949
    5050        public CombineWayAction() {
    51                 super(tr("Combine Way"), "combineway", tr("Combine several ways into one."), KeyEvent.VK_C, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);
     51                super(tr("Combine Way"), "combineway", tr("Combine several ways into one."), KeyEvent.VK_C, 0, true);
    5252                DataSet.selListeners.add(this);
    5353        }
  • trunk/src/org/openstreetmap/josm/actions/JoinNodeWayAction.java

    r466 r469  
    3535        public JoinNodeWayAction() {
    3636            super(tr("Join node to way"), "joinnodeway",
    37                         tr("Join a node into the nearest way segments"), KeyEvent.VK_J, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);
     37                        tr("Join a node into the nearest way segments"), KeyEvent.VK_J, 0, true);
    3838        }
    3939
  • trunk/src/org/openstreetmap/josm/actions/MergeNodesAction.java

    r429 r469  
    5353
    5454        public MergeNodesAction() {
    55                 super(tr("Merge Nodes"), "mergenodes", tr("Merge nodes into one."), KeyEvent.VK_M, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);
     55                super(tr("Merge Nodes"), "mergenodes", tr("Merge nodes into one."), KeyEvent.VK_M, 0, true);
    5656                DataSet.selListeners.add(this);
    5757        }
  • trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java

    r343 r469  
    2727        super(tr("Reverse ways"), "wayflip",
    2828                        tr("Reverse the direction of all selected ways."),
    29                         KeyEvent.VK_R, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);
     29                        KeyEvent.VK_R, 0, true);
    3030    }
    3131
  • trunk/src/org/openstreetmap/josm/actions/SplitWayAction.java

    r393 r469  
    5151         */
    5252        public SplitWayAction() {
    53                 super(tr("Split Way"), "splitway", tr("Split a way at the selected node."), KeyEvent.VK_P, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);
     53                super(tr("Split Way"), "splitway", tr("Split a way at the selected node."), KeyEvent.VK_P, 0, true);
    5454                DataSet.selListeners.add(this);
    5555        }
  • trunk/src/org/openstreetmap/josm/actions/UnselectAllAction.java

    r468 r469  
    1414
    1515        public UnselectAllAction() {
    16                 super(tr("Unselect All"),"unselectall", tr("Unselect all objects."), KeyEvent.VK_A, KeyEvent.CTRL_DOWN_MASK | KeyEvent.SHIFT_DOWN_MASK, true);
     16                super(tr("Unselect All"),"unselectall", tr("Unselect all objects."), KeyEvent.VK_U, 0, true);
    1717
    18                 // Add extra shortcut U
     18                // Add extra shortcut C-S-a
    1919                Main.contentPane.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(
    20                         KeyStroke.getKeyStroke(KeyEvent.VK_U, 0), tr("Unselect All"));
     20                        KeyStroke.getKeyStroke(KeyEvent.VK_A, KeyEvent.CTRL_DOWN_MASK | KeyEvent.SHIFT_DOWN_MASK), tr("Unselect All"));
    2121    }
    2222
Note: See TracChangeset for help on using the changeset viewer.