Changeset 1052 in josm


Ignore:
Timestamp:
Oct 23, 2008 5:08:55 PM (5 years ago)
Author:
stoecker
Message:

removed some more keyboard conflicts

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

Legend:

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

    r1023 r1052  
    8989        public HistoryDialog() { 
    9090                super(tr("History"), "history", tr("Display the history of all selected items."), 
    91                 ShortCut.registerShortCut("subwindow:history", tr("Toggle history window"), KeyEvent.VK_H, ShortCut.GROUP_LAYER), 150); 
     91                ShortCut.registerShortCut("subwindow:history", tr("Toggle history window"), KeyEvent.VK_H, 
     92                ShortCut.GROUP_LAYER, ShortCut.SHIFT_DEFAULT), 150); 
    9293                historyPane.setVisible(false); 
    9394                notLoaded.setVisible(true); 
  • trunk/src/org/openstreetmap/josm/gui/dialogs/PropertiesDialog.java

    r1027 r1052  
    422422        public PropertiesDialog(MapFrame mapFrame) { 
    423423                super(tr("Properties/Memberships"), "propertiesdialog", tr("Properties for selected objects."), 
    424                 ShortCut.registerShortCut("subwindow:properies", tr("Toggle properties window"), KeyEvent.VK_P, ShortCut.GROUP_LAYER), 150); 
     424                ShortCut.registerShortCut("subwindow:properies", tr("Toggle properties window"), KeyEvent.VK_P, 
     425                ShortCut.GROUP_LAYER, ShortCut.SHIFT_DEFAULT), 150); 
    425426 
    426427                // --------------------------------------- 
  • trunk/src/org/openstreetmap/josm/gui/dialogs/SelectionListDialog.java

    r1023 r1052  
    7878    public SelectionListDialog() { 
    7979        super(tr("Current Selection"), "selectionlist", tr("Open a selection list window."), 
    80         ShortCut.registerShortCut("subwindow:selection", tr("Toggle selection window"), KeyEvent.VK_T, ShortCut.GROUP_LAYER), 150); 
     80        ShortCut.registerShortCut("subwindow:selection", tr("Toggle selection window"), KeyEvent.VK_T, ShortCut.GROUP_LAYER, ShortCut.SHIFT_DEFAULT), 150); 
    8181 
    8282        selectionHistory = new LinkedList<Collection<? extends OsmPrimitive>>(); 
  • trunk/src/org/openstreetmap/josm/gui/dialogs/UserListDialog.java

    r1040 r1052  
    5252        public UserListDialog() { 
    5353                super(tr("Authors"), "userlist", tr("Open a list of people working on the selected objects."), 
    54                 ShortCut.registerShortCut("subwindow:authors", tr("Toggle authors window"), KeyEvent.VK_A, ShortCut.GROUP_LAYER), 150); 
     54                ShortCut.registerShortCut("subwindow:authors", tr("Toggle authors window"), KeyEvent.VK_A, ShortCut.GROUP_LAYER, ShortCut.SHIFT_DEFAULT), 150); 
    5555 
    5656                data.setColumnIdentifiers(new String[]{tr("Author"),tr("# Objects"),"%"}); 
Note: See TracChangeset for help on using the changeset viewer.