Ignore:
Timestamp:
2013-11-19T02:29:10+01:00 (12 years ago)
Author:
Don-vip
Message:

fix #9333 - Make 'jump to position" more visible (added in view menu) + update to new osm.org url scheme + fix NPE without mapview + javadoc

File:
1 edited

Legend:

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

    r6336 r6394  
    208208    /** View -> "Zoom to"... actions */
    209209    public final Map<String, AutoScaleAction> autoScaleActions = new HashMap<String, AutoScaleAction>();
     210    /** View -> Jump to position */
     211    public final JumpToAction jumpToAct = new JumpToAction();
    210212
    211213    /* Tools menu */
     
    337339    public final JosmAction moveLeftAction = new MoveAction(MoveAction.Direction.LEFT);
    338340    public final JosmAction moveRightAction = new MoveAction(MoveAction.Direction.RIGHT);
    339     public final JumpToAction jumpToAct = new JumpToAction();
    340341
    341342    public final TaggingPresetSearchAction presetSearchAction = new TaggingPresetSearchAction();
     
    650651
    651652        viewMenu.addSeparator();
     653        add(viewMenu, jumpToAct);
     654        viewMenu.addSeparator();
    652655        add(viewMenu, info);
    653656        add(viewMenu, infoweb);
Note: See TracChangeset for help on using the changeset viewer.