Changeset 418 in josm for trunk/src/org
- Timestamp:
- 2007-10-25T11:43:23+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/PropertiesDialog.java
r416 r418 328 328 329 329 // --------------------------------------- 330 // This drop-down will probably be removed soon. 331 // 332 if (TaggingPresetPreference.taggingPresets.size() > 0) { 330 // This drop-down is really deprecated but we offer people a chance to 331 // activate it if they really want. Presets should be used from the 332 // menu. 333 if (TaggingPresetPreference.taggingPresets.size() > 0 && 334 Main.pref.getBoolean("taggingpresets.in-properties-dialog", false)) { 333 335 Vector<ActionListener> allPresets = new Vector<ActionListener>(); 334 336 for (final TaggingPreset p : TaggingPresetPreference.taggingPresets) … … 352 354 }); 353 355 taggingPresets.setRenderer(new TaggingCellRenderer()); 354 355 // End of "will be removed soon".356 // --------------------------------------------357 356 358 357 // setting up the properties table
Note:
See TracChangeset
for help on using the changeset viewer.