- Timestamp:
- 2018-05-21T04:02:08+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/mappaint
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/StyleSetting.java
r12846 r13800 36 36 * A style setting for boolean value (yes / no). 37 37 */ 38 class BooleanStyleSetting implements StyleSetting { 38 class BooleanStyleSetting implements StyleSetting, Comparable<BooleanStyleSetting> { 39 39 public final StyleSource parentStyle; 40 40 public final String prefKey; … … 82 82 } 83 83 } 84 85 @Override 86 public int compareTo(BooleanStyleSetting o) { 87 return label.compareTo(o.label); 88 } 84 89 } 85 90 } -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSStyleSource.java
r13664 r13800 606 606 } 607 607 } 608 settings.sort(null); 608 609 } 609 610
Note:
See TracChangeset
for help on using the changeset viewer.