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

Location:
applications/editors/josm/plugins/utilsplugin2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/build.xml

    r30459 r30939  
    55    <property name="commit.message" value="[josm_utilsplugin2]: select boundary by double-click; multitagger table highlights"/>
    66    <!-- 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"/>
    88
    99    <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  
    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.