Changeset 30939 in osm
- Timestamp:
- 2015-02-03T23:01:09+01:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r30459 r30939 5 5 <property name="commit.message" value="[josm_utilsplugin2]: select boundary by double-click; multitagger table highlights"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value=" 7146"/>7 <property name="plugin.main.version" value="8005"/> 8 8 9 9 <property name="plugin.author" value="Kalle Lampila, Upliner, Zverik, akks, joshdoe and others"/> -
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.