Ignore:
Timestamp:
2016-06-24T22:16:43+02:00 (8 years ago)
Author:
stoecker
Message:

see #12994 - don't warn about SideButton without icon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreference.java

    r10378 r10482  
    347347            putValue(NAME, tr("Download list"));
    348348            putValue(SHORT_DESCRIPTION, tr("Download the list of available plugins"));
    349             putValue(SMALL_ICON, ImageProvider.get("download"));
     349            new ImageProvider("download").getResource().attachImageIcon(this);
    350350        }
    351351
     
    384384            putValue(NAME, tr("Update plugins"));
    385385            putValue(SHORT_DESCRIPTION, tr("Update the selected plugins"));
    386             putValue(SMALL_ICON, ImageProvider.get("dialogs", "refresh"));
     386            new ImageProvider("dialogs", "refresh").getResource().attachImageIcon(this);
    387387        }
    388388
     
    486486            putValue(NAME, tr("Configure sites..."));
    487487            putValue(SHORT_DESCRIPTION, tr("Configure the list of sites where plugins are downloaded from"));
    488             putValue(SMALL_ICON, ImageProvider.get("dialogs", "settings"));
     488            new ImageProvider("dialogs", "settings").getResource().attachImageIcon(this);
    489489        }
    490490
Note: See TracChangeset for help on using the changeset viewer.