- Timestamp:
- 2020-10-18T12:21:14+02:00 (4 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CONTRIBUTION
r16902 r17231 127 127 https://wiki.openstreetmap.org/wiki/File:Logo_simple.svg 128 128 129 Social logos come from https://github.com/FortAwesome/Font-Awesome (CC BY 4.0)129 Social logos and the language icon come from https://github.com/FortAwesome/Font-Awesome (CC BY 4.0) 130 130 131 131 See also the commit message of each icon for its source -
trunk/src/org/openstreetmap/josm/gui/preferences/TabPreferenceSetting.java
r17178 r17231 28 28 default ImageIcon getIcon(ImageProvider.ImageSizes size) { 29 29 String iconName = getIconName(); 30 return iconName == null || iconName.isEmpty() ? null : ImageProvider.get("preferences", iconName, size); 30 return iconName == null || iconName.isEmpty() 31 ? null 32 : iconName.contains("/") 33 ? ImageProvider.get(iconName, size) 34 : ImageProvider.get("preferences", iconName, size); 31 35 } 32 36 -
trunk/src/org/openstreetmap/josm/gui/preferences/display/ColorPreference.java
r17159 r17231 81 81 82 82 ColorPreference() { 83 super( null, tr("Colors"), tr("Change colors used in program dialogs and in map paint styles."));83 super("/colorchooser", tr("Colors"), tr("Change colors used in program dialogs and in map paint styles.")); 84 84 } 85 85 -
trunk/src/org/openstreetmap/josm/gui/preferences/display/DrawingPreference.java
r17159 r17231 69 69 70 70 DrawingPreference() { 71 super( null, tr("OSM Data"), tr("Settings that control the drawing of OSM data."));71 super(/* ICON(preferences/) */ "display", tr("OSM Data"), tr("Settings that control the drawing of OSM data.")); 72 72 } 73 73 -
trunk/src/org/openstreetmap/josm/gui/preferences/display/GPXPreference.java
r17159 r17231 25 25 26 26 GPXPreference() { 27 super( null, tr("GPS Points"), tr("Settings that control the drawing of GPS tracks."));27 super("layer/gpx_small.svg", tr("GPS Points"), tr("Settings that control the drawing of GPS tracks.")); 28 28 } 29 29 -
trunk/src/org/openstreetmap/josm/gui/preferences/display/LanguagePreference.java
r17159 r17231 48 48 49 49 LanguagePreference() { 50 super( null, tr("Language"), tr("Change the language of JOSM."));50 super(/* ICON(preferences/) */ "language", tr("Language"), tr("Change the language of JOSM.")); 51 51 } 52 52 -
trunk/src/org/openstreetmap/josm/gui/preferences/map/MapPaintPreference.java
r17161 r17231 40 40 41 41 MapPaintPreference() { 42 super( null, tr("Map Paint Styles"), tr("Map Paint Styles"));42 super("dialogs/mapstyle", tr("Map Paint Styles"), tr("Map Paint Styles")); 43 43 } 44 44
Note:
See TracChangeset
for help on using the changeset viewer.