Changeset 35515 in osm for applications/editors/josm/plugins/turnrestrictions/src/org
- Timestamp:
- 2020-07-25T14:06:31+02:00 (4 years ago)
- Location:
- applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/RelationMemberTable.java
r34567 r35515 167 167 putValue(SHORT_DESCRIPTION, tr("Move the selected relation members down by one position")); 168 168 putValue(ACCELERATOR_KEY, keyStroke); 169 new ImageProvider("dialogs", " movedown").getResource().attachImageIcon(this);169 new ImageProvider("dialogs", "down").getResource().attachImageIcon(this); 170 170 updateEnabledState(); 171 171 } … … 197 197 putValue(SHORT_DESCRIPTION, tr("Move the selected relation members up by one position")); 198 198 putValue(ACCELERATOR_KEY, keyStroke); 199 new ImageProvider("dialogs", " moveup").getResource().attachImageIcon(this);199 new ImageProvider("dialogs", "up").getResource().attachImageIcon(this); 200 200 updateEnabledState(); 201 201 } -
applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/ViaList.java
r34567 r35515 182 182 putValue(SHORT_DESCRIPTION, tr("Move the selected vias down by one position")); 183 183 putValue(ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_DOWN, KeyEvent.ALT_DOWN_MASK)); 184 new ImageProvider("dialogs", " movedown").getResource().attachImageIcon(this);184 new ImageProvider("dialogs", "down").getResource().attachImageIcon(this); 185 185 updateEnabledState(); 186 186 } … … 210 210 putValue(SHORT_DESCRIPTION, tr("Move the selected vias up by one position")); 211 211 putValue(ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_UP, KeyEvent.ALT_DOWN_MASK)); 212 new ImageProvider("dialogs", " moveup").getResource().attachImageIcon(this);212 new ImageProvider("dialogs", "up").getResource().attachImageIcon(this); 213 213 updateEnabledState(); 214 214 }
Note:
See TracChangeset
for help on using the changeset viewer.