Changeset 31558 in osm for applications


Ignore:
Timestamp:
2015-09-15T08:17:09+02:00 (9 years ago)
Author:
donvip
Message:

[josm_buildings_tools] update to JOSM 8760

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

Legend:

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

    r31361 r31558  
    44    <property name="commit.message" value="BuildingTools: Alt key to disable tags"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="8549"/>
     6    <property name="plugin.main.version" value="8760"/>
    77   
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/buildings_tools/src/buildings_tools/AdvancedSettingsDialog.java

    r31361 r31558  
    99import javax.swing.JLabel;
    1010
     11import org.openstreetmap.josm.data.osm.Changeset;
    1112import org.openstreetmap.josm.gui.tagging.TagEditorModel;
    1213import org.openstreetmap.josm.gui.tagging.TagEditorPanel;
     
    2728            tagsModel.add(entry.getKey(), entry.getValue());
    2829        }
    29         panel.add(new TagEditorPanel(tagsModel, null), GBC.eop().fill(GBC.BOTH));
     30        panel.add(new TagEditorPanel(tagsModel, null, Changeset.MAX_CHANGESET_TAG_LENGTH), GBC.eop().fill(GBC.BOTH));
    3031
    3132        panel.add(cBigMode, GBC.eol().fill(GBC.HORIZONTAL));
Note: See TracChangeset for help on using the changeset viewer.