Ignore:
Timestamp:
2015-02-03T23:01:09+01:00 (10 years ago)
Author:
donvip
Message:

[josm_utilsplugin2] see #josm11064 - disable undo/redo feature for table cell editors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/multitagger/MultiTagDialog.java

    r30737 r30939  
    5858
    5959/**
    60  * Dialog fo redinitg multible object tags
     60 * Dialog for editing multiple object tags
    6161 */
    6262public class MultiTagDialog extends ExtendedDialog implements SelectionChangedListener {
     
    6464    private final MultiTaggerTableModel tableModel = new MultiTaggerTableModel();
    6565    private final JTable tbl;
    66     //
     66
    6767    private final HighlightHelper highlightHelper = new HighlightHelper();
    6868    private final HistoryComboBox cbTagSet = new HistoryComboBox();
     
    211211        for (int i=0; i<tableModel.mainTags.length; i++) {
    212212                if (tableModel.isSpecialTag[i]) continue;
    213                 AutoCompletingTextField tf = new AutoCompletingTextField();
     213                AutoCompletingTextField tf = new AutoCompletingTextField(0, false);
    214214                AutoCompletionList acList = new AutoCompletionList();
    215215                autocomplete.populateWithTagValues(acList, tableModel.mainTags[i]);
Note: See TracChangeset for help on using the changeset viewer.