- Timestamp:
- 2013-06-08T14:26:14+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPreset.java
r5964 r5997 947 947 public boolean editable = true; 948 948 protected JosmComboBox combo; 949 public String length; 949 950 950 951 public Combo() { … … 973 974 AutoCompletingTextField tf = new AutoCompletingTextField(); 974 975 initAutoCompletionField(tf, key); 976 if (length != null && !length.isEmpty()) { 977 tf.setMaxChars(new Integer(length)); 978 } 975 979 AutoCompletionList acList = tf.getAutoCompletionList(); 976 980 if (acList != null) {
Note:
See TracChangeset
for help on using the changeset viewer.