Ticket #18638: 18638.shortcuts.patch
| File 18638.shortcuts.patch, 1.8 KB (added by , 6 years ago) |
|---|
-
src/org/openstreetmap/josm/gui/dialogs/layer/CycleLayerDownAction.java
33 33 * Create a CycleLayerDownAction that cycles through layers that are in the model 34 34 */ 35 35 public CycleLayerDownAction() { 36 super(tr("Cycle layers"), "dialogs/next", tr("Cycle through layers"), cycleDown, true, "cycle-layer ", false);36 super(tr("Cycle layers"), "dialogs/next", tr("Cycle through layers"), cycleDown, true, "cycle-layer-down", false); 37 37 new ImageProvider("dialogs", "next").getResource().attachImageIcon(this, true); 38 38 putValue(SHORT_DESCRIPTION, tr("Cycle through visible layers.")); 39 39 putValue(NAME, tr("Cycle layers")); -
src/org/openstreetmap/josm/gui/dialogs/layer/CycleLayerUpAction.java
31 31 * Create a CycleLayerDownAction that cycles through layers that are in the model 32 32 */ 33 33 public CycleLayerUpAction() { 34 super(tr("Cycle layer up"), "dialogs/next", tr("Cycle up through layers"), cycleUp, true, "cycle-layer ", false);34 super(tr("Cycle layer up"), "dialogs/next", tr("Cycle up through layers"), cycleUp, true, "cycle-layer-up", false); 35 35 new ImageProvider("dialogs", "next").getResource().attachImageIcon(this, true); 36 36 putValue(SHORT_DESCRIPTION, tr("Cycle through visible layers.")); 37 37 putValue(NAME, tr("Cycle layers"));
