Ignore:
Timestamp:
2014-10-29T15:24:07+01:00 (9 years ago)
Author:
stoecker
Message:

cleanup icons, mark undetected icons, set proper mimetype, delete unused icons, update geticons script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java

    r7435 r7668  
    891891
    892892        public DeleteAction() {
    893             super(tr("Delete"), "dialogs/delete", tr("Delete the selected key in all objects"),
     893            super(tr("Delete"), /* ICON() */ "dialogs/delete", tr("Delete the selected key in all objects"),
    894894                    Shortcut.registerShortcut("properties:delete", tr("Delete Tags"), KeyEvent.VK_D,
    895895                            Shortcut.ALT_CTRL_SHIFT), false);
     
    999999    class AddAction extends JosmAction {
    10001000        public AddAction() {
    1001             super(tr("Add"), "dialogs/add", tr("Add a new key/value pair to all objects"),
     1001            super(tr("Add"), /* ICON() */ "dialogs/add", tr("Add a new key/value pair to all objects"),
    10021002                    Shortcut.registerShortcut("properties:add", tr("Add Tag"), KeyEvent.VK_A,
    10031003                            Shortcut.ALT), false);
     
    10161016    class EditAction extends JosmAction implements ListSelectionListener {
    10171017        public EditAction() {
    1018             super(tr("Edit"), "dialogs/edit", tr("Edit the value of the selected key for all objects"),
     1018            super(tr("Edit"), /* ICON() */ "dialogs/edit", tr("Edit the value of the selected key for all objects"),
    10191019                    Shortcut.registerShortcut("properties:edit", tr("Edit Tags"), KeyEvent.VK_S,
    10201020                            Shortcut.ALT), false);
Note: See TracChangeset for help on using the changeset viewer.