Changeset 17018 in josm for trunk/src/org
- Timestamp:
- 2020-09-12T18:37:39+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/DialogsToggleAction.java
r16528 r17018 29 29 public DialogsToggleAction() { 30 30 super(tr("Dialogs panel"), 31 (ImageProvider) null, /* no icon */31 new ImageProvider("dialogs/dialogs_panel"), 32 32 tr("Toggle dialogs panel, maximize mapview"), 33 33 Shortcut.registerShortcut("menu:view:dialogspanel", tr("Toggle dialogs panel"), KeyEvent.VK_TAB, Shortcut.DIRECT), -
trunk/src/org/openstreetmap/josm/actions/FullscreenToggleAction.java
r16509 r17018 24 24 import org.openstreetmap.josm.tools.PlatformManager; 25 25 import org.openstreetmap.josm.tools.Shortcut; 26 import org.openstreetmap.josm.tools.ImageProvider; 26 27 27 28 /** … … 38 39 public FullscreenToggleAction() { 39 40 super(tr("Fullscreen view"), 40 n ull, /* no icon */41 new ImageProvider("fullscreen"), 41 42 tr("Toggle fullscreen view"), 42 43 Shortcut.registerShortcut("menu:view:fullscreen", tr("Toggle fullscreen view"), KeyEvent.VK_F11, Shortcut.DIRECT), -
trunk/src/org/openstreetmap/josm/actions/JumpToAction.java
r16509 r17018 54 54 */ 55 55 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"), 57 57 Shortcut.registerShortcut("tools:jumpto", tr("Tool: {0}", tr("Jump to Position")), 58 58 KeyEvent.VK_J, Shortcut.CTRL), true, "action/jumpto", false); -
trunk/src/org/openstreetmap/josm/actions/WireframeToggleAction.java
r16509 r17018 25 25 public WireframeToggleAction() { 26 26 super(tr("Wireframe View"), 27 null, /* no icon */27 "dialogs/mappaint/wireframe_small", 28 28 tr("Enable/disable rendering the map as wireframe only"), 29 29 Shortcut.registerShortcut("menu:view:wireframe", tr("Toggle Wireframe view"), KeyEvent.VK_W, Shortcut.CTRL),
Note:
See TracChangeset
for help on using the changeset viewer.