Changeset 4927 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2012-02-13T22:15:10+01:00 (13 years ago)
Author:
stoecker
Message:

small cleanups

Location:
trunk/src/org/openstreetmap/josm
Files:
4 edited

Legend:

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

    r4851 r4927  
    2525                tr("Updates the objects in the active data layer from the server."),
    2626                Shortcut.registerShortcut("file:updatedata",
    27                         tr("Update data"),
     27                        tr("File: {0}", tr("Update data")),
    2828                        KeyEvent.VK_U, Shortcut.GROUP_HOTKEY),
    2929                true);
  • trunk/src/org/openstreetmap/josm/actions/UpdateModifiedAction.java

    r4892 r4927  
    2626                tr("Updates the currently modified objects from the server (re-downloads data)"),
    2727                Shortcut.registerShortcut("file:updatemodified",
    28                         tr("Update modified"), KeyEvent.VK_M,
     28                        tr("File: {0}", tr("Update modified")), KeyEvent.VK_M,
    2929                        Shortcut.GROUPS_ALT2+Shortcut.GROUP_HOTKEY),
    3030                        true);
  • trunk/src/org/openstreetmap/josm/actions/UpdateSelectionAction.java

    r4892 r4927  
    8787                tr("Updates the currently selected objects from the server (re-downloads data)"),
    8888                Shortcut.registerShortcut("file:updateselection",
    89                         tr("Update selection"), KeyEvent.VK_U,
     89                        tr("File: {0}", tr("Update selection")), KeyEvent.VK_U,
    9090                        Shortcut.GROUPS_ALT2+Shortcut.GROUP_HOTKEY),
    9191                true);
  • trunk/src/org/openstreetmap/josm/tools/Shortcut.java

    r4926 r4927  
    450450
    451451    private static int findModifier(int group, Integer modifier) {
    452         Integer defaultModifier = getGroupModifier(group + GROUPS_DEFAULT);
     452        Integer defaultModifier = getGroupModifier(group);
    453453        if(modifier != null) {
    454454            if(modifier == SHIFT_DEFAULT) {
     
    484484            conflictsWith = potentialShortcut;
    485485            defaultModifier = getGroupModifier(requestedGroup + GROUPS_ALT1);
    486             if (defaultModifier == null) { // garbage in, no shortcurt out
     486            if (defaultModifier == null) { // garbage in, no shortcut out
    487487                defaultModifier = getGroupModifier(GROUP_NONE + GROUPS_DEFAULT);
    488488            }
     
    490490            if (potentialShortcut != null) {
    491491                defaultModifier = getGroupModifier(requestedGroup + GROUPS_ALT2);
    492                 if (defaultModifier == null) { // garbage in, no shortcurt out
     492                if (defaultModifier == null) { // garbage in, no shortcut out
    493493                    defaultModifier = getGroupModifier(GROUP_NONE + GROUPS_DEFAULT);
    494494                }
Note: See TracChangeset for help on using the changeset viewer.