Changeset 35515 in osm
- Timestamp:
- 2020-07-25T14:06:31+02:00 (4 years ago)
- Location:
- applications/editors/josm/plugins/turnrestrictions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnrestrictions/build.xml
r34643 r35515 4 4 <property name="commit.message" value="Adapt to JOSM core change (DefaultNameFormatter)"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 4221"/>6 <property name="plugin.main.version" value="16807"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
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.