Changeset 30939 in osm for applications/editors/josm/plugins/utilsplugin2/src/org
- Timestamp:
- 2015-02-03T23:01:09+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/multitagger/MultiTagDialog.java
r30737 r30939 58 58 59 59 /** 60 * Dialog fo redinitg multible object tags60 * Dialog for editing multiple object tags 61 61 */ 62 62 public class MultiTagDialog extends ExtendedDialog implements SelectionChangedListener { … … 64 64 private final MultiTaggerTableModel tableModel = new MultiTaggerTableModel(); 65 65 private final JTable tbl; 66 // 66 67 67 private final HighlightHelper highlightHelper = new HighlightHelper(); 68 68 private final HistoryComboBox cbTagSet = new HistoryComboBox(); … … 211 211 for (int i=0; i<tableModel.mainTags.length; i++) { 212 212 if (tableModel.isSpecialTag[i]) continue; 213 AutoCompletingTextField tf = new AutoCompletingTextField( );213 AutoCompletingTextField tf = new AutoCompletingTextField(0, false); 214 214 AutoCompletionList acList = new AutoCompletionList(); 215 215 autocomplete.populateWithTagValues(acList, tableModel.mainTags[i]);
Note:
See TracChangeset
for help on using the changeset viewer.