Changeset 17018 in josm for trunk/src/org


Ignore:
Timestamp:
2020-09-12T18:37:39+02:00 (4 years ago)
Author:
Klumbumbus
Message:

see #19786 - Add missing icons to View menu, wireframe_small icon improved (sharper at 16 and 24 px), all icons self created, PD and CC0 licensed

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

Legend:

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

    r16528 r17018  
    2929    public DialogsToggleAction() {
    3030        super(tr("Dialogs panel"),
    31               (ImageProvider) null, /* no icon */
     31              new ImageProvider("dialogs/dialogs_panel"),
    3232              tr("Toggle dialogs panel, maximize mapview"),
    3333              Shortcut.registerShortcut("menu:view:dialogspanel", tr("Toggle dialogs panel"), KeyEvent.VK_TAB, Shortcut.DIRECT),
  • trunk/src/org/openstreetmap/josm/actions/FullscreenToggleAction.java

    r16509 r17018  
    2424import org.openstreetmap.josm.tools.PlatformManager;
    2525import org.openstreetmap.josm.tools.Shortcut;
     26import org.openstreetmap.josm.tools.ImageProvider;
    2627
    2728/**
     
    3839    public FullscreenToggleAction() {
    3940        super(tr("Fullscreen view"),
    40               null, /* no icon */
     41              new ImageProvider("fullscreen"),
    4142              tr("Toggle fullscreen view"),
    4243              Shortcut.registerShortcut("menu:view:fullscreen", tr("Toggle fullscreen view"), KeyEvent.VK_F11, Shortcut.DIRECT),
  • trunk/src/org/openstreetmap/josm/actions/JumpToAction.java

    r16509 r17018  
    5454     */
    5555    public JumpToAction() {
    56         super(tr("Jump to Position"), (ImageProvider) null, tr("Opens a dialog that allows to jump to a specific location"),
     56        super(tr("Jump to Position"), "dialogs/position", tr("Opens a dialog that allows to jump to a specific location"),
    5757                Shortcut.registerShortcut("tools:jumpto", tr("Tool: {0}", tr("Jump to Position")),
    5858                        KeyEvent.VK_J, Shortcut.CTRL), true, "action/jumpto", false);
  • trunk/src/org/openstreetmap/josm/actions/WireframeToggleAction.java

    r16509 r17018  
    2525    public WireframeToggleAction() {
    2626        super(tr("Wireframe View"),
    27               null, /* no icon */
     27              "dialogs/mappaint/wireframe_small",
    2828              tr("Enable/disable rendering the map as wireframe only"),
    2929              Shortcut.registerShortcut("menu:view:wireframe", tr("Toggle Wireframe view"), KeyEvent.VK_W, Shortcut.CTRL),
Note: See TracChangeset for help on using the changeset viewer.