Ignore:
Timestamp:
2014-02-05T23:22:04+01:00 (10 years ago)
Author:
Don-vip
Message:

fix #8234 - remove duplicated/unused icons + javadoc

File:
1 edited

Legend:

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

    r6672 r6814  
    3838 * BTW: Someone might want to implement projection corrections for this...
    3939 *
     40 * @since 996
     41 *
    4042 * @author Henry Loenwind, based on much copy&Paste from other Actions.
    4143 * @author Sebastian Masch
     
    4749     */
    4850    public CreateCircleAction() {
    49         super(tr("Create Circle"), "createcircle", tr("Create a circle from three selected nodes."),
     51        super(tr("Create Circle"), "aligncircle", tr("Create a circle from three selected nodes."),
    5052            Shortcut.registerShortcut("tools:createcircle", tr("Tool: {0}", tr("Create Circle")),
    51             KeyEvent.VK_O, Shortcut.SHIFT), true);
     53            KeyEvent.VK_O, Shortcut.SHIFT), true, "createcircle", true);
    5254        putValue("help", ht("/Action/CreateCircle"));
    5355    }
     
    276278        Main.map.repaint();
    277279    }
    278    
     280
    279281    private static void notifyNodesNotOnCircle() {
    280282        new Notification(
Note: See TracChangeset for help on using the changeset viewer.