Changeset 35515 in osm


Ignore:
Timestamp:
2020-07-25T14:06:31+02:00 (4 years ago)
Author:
klumbumbus
Message:

see #josm15240 - update to josm r16807

Location:
applications/editors/josm/plugins/turnrestrictions
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/turnrestrictions/build.xml

    r34643 r35515  
    44    <property name="commit.message" value="Adapt to JOSM core change (DefaultNameFormatter)"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="14221"/>
     6    <property name="plugin.main.version" value="16807"/>
    77
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/RelationMemberTable.java

    r34567 r35515  
    167167            putValue(SHORT_DESCRIPTION, tr("Move the selected relation members down by one position"));
    168168            putValue(ACCELERATOR_KEY, keyStroke);
    169             new ImageProvider("dialogs", "movedown").getResource().attachImageIcon(this);
     169            new ImageProvider("dialogs", "down").getResource().attachImageIcon(this);
    170170            updateEnabledState();
    171171        }
     
    197197            putValue(SHORT_DESCRIPTION, tr("Move the selected relation members up by one position"));
    198198            putValue(ACCELERATOR_KEY, keyStroke);
    199             new ImageProvider("dialogs", "moveup").getResource().attachImageIcon(this);
     199            new ImageProvider("dialogs", "up").getResource().attachImageIcon(this);
    200200            updateEnabledState();
    201201        }
  • applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/ViaList.java

    r34567 r35515  
    182182            putValue(SHORT_DESCRIPTION, tr("Move the selected vias down by one position"));
    183183            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);
    185185            updateEnabledState();
    186186        }
     
    210210            putValue(SHORT_DESCRIPTION, tr("Move the selected vias up by one position"));
    211211            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);
    213213            updateEnabledState();
    214214        }
Note: See TracChangeset for help on using the changeset viewer.