Changeset 31558 in osm for applications
- Timestamp:
- 2015-09-15T08:17:09+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/buildings_tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/buildings_tools/build.xml
r31361 r31558 4 4 <property name="commit.message" value="BuildingTools: Alt key to disable tags"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="8 549"/>6 <property name="plugin.main.version" value="8760"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/buildings_tools/src/buildings_tools/AdvancedSettingsDialog.java
r31361 r31558 9 9 import javax.swing.JLabel; 10 10 11 import org.openstreetmap.josm.data.osm.Changeset; 11 12 import org.openstreetmap.josm.gui.tagging.TagEditorModel; 12 13 import org.openstreetmap.josm.gui.tagging.TagEditorPanel; … … 27 28 tagsModel.add(entry.getKey(), entry.getValue()); 28 29 } 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)); 30 31 31 32 panel.add(cBigMode, GBC.eol().fill(GBC.HORIZONTAL));
Note:
See TracChangeset
for help on using the changeset viewer.