Legend:
- Unmodified
- Added
- Removed
-
trunk/data/defaultpresets.xml
r3576 r3581 448 448 <label text="Edit Bridge" /> 449 449 <space /> 450 < keykey="bridge" value="yes" />450 <combo key="bridge" values="yes,viaduct,swing,aqueduct" required="true" default="yes" text="Bridge" /> 451 451 <optional> 452 452 <text key="name" text="Name" default="" delete_if_empty="true" /> -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PresetListPanel.java
r3518 r3581 120 120 key = ((Check)i).key; 121 121 } 122 if (key != null && valueCount.get(key) == null) { 123 found -= 100; 122 if (key != null) { 123 if (valueCount.get(key) != null) { 124 found += 1; 125 } else { 126 found -= 100; 127 } 124 128 } 125 129 } -
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetSearchDialog.java
r3568 r3581 176 176 return result; 177 177 } 178 179 @Override 180 public String toString() { 181 return classification + " " + preset.toString(); 182 } 178 183 } 179 184
Note:
See TracChangeset
for help on using the changeset viewer.