Changeset 16097 in josm for trunk/src/org
- Timestamp:
- 2020-03-08T21:36:20+01:00 (5 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/dialogs/layer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/layer/CycleLayerDownAction.java
r16090 r16097 34 34 */ 35 35 public CycleLayerDownAction() { 36 super(tr("Cycle layer down"), "dialogs/previous", tr("Cycle through data layers in a downward direction"), cycleDown, true, "cycle-layer-down", false); 36 super(tr("Cycle layer down"), "dialogs/previous", tr("Cycle through data layers in a downward direction"), 37 cycleDown, true, "cycle-layer-down", false); 37 38 new ImageProvider("dialogs", "previous").getResource().attachImageIcon(this, true); 38 39 putValue(SHORT_DESCRIPTION, tr("Cycle through visible layers.")); -
trunk/src/org/openstreetmap/josm/gui/dialogs/layer/CycleLayerUpAction.java
r16090 r16097 32 32 */ 33 33 public CycleLayerUpAction() { 34 super(tr("Cycle layer up"), "dialogs/next", tr("Cycle through data layers in an upward direction"), cycleUp, true, "cycle-layer-up", false); 34 super(tr("Cycle layer up"), "dialogs/next", tr("Cycle through data layers in an upward direction"), 35 cycleUp, true, "cycle-layer-up", false); 35 36 new ImageProvider("dialogs", "next").getResource().attachImageIcon(this, true); 36 37 putValue(SHORT_DESCRIPTION, tr("Cycle through visible layers."));
Note:
See TracChangeset
for help on using the changeset viewer.