Changeset 7694 in josm for trunk/src/org/openstreetmap/josm/gui/IconToggleButton.java
- Timestamp:
- 2014-11-02T11:38:51+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/IconToggleButton.java
r6990 r7694 158 158 @Override 159 159 public Icon getIcon() { 160 return (Icon) getSafeActionValue(Action.SMALL_ICON); 160 Object o = getSafeActionValue(Action.LARGE_ICON_KEY); 161 if (o == null) 162 o = getSafeActionValue(Action.SMALL_ICON); 163 return (Icon) o; 161 164 } 162 165
Note:
See TracChangeset
for help on using the changeset viewer.
