Changeset 31560 in osm for applications
- Timestamp:
- 2015-09-15T22:43:49+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/tageditor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tageditor/build.xml
r30416 r31560 2 2 <project name="tageditor" default="dist" basedir="."> 3 3 <property name="commit.message" value="Tageditor: help shortcut parser, rebuild"/> 4 <property name="plugin.main.version" value=" 7001"/>4 <property name="plugin.main.version" value="8670"/> 5 5 6 6 <property name="plugin.author" value="Karl Guggisberg"/> -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/editor/TagEditor.java
r30488 r31560 101 101 // build the scrollable table for editing tag names and tag values 102 102 // 103 tblTagEditor = new TagTable(tagEditorModel); 103 tblTagEditor = new TagTable(tagEditorModel, 0); 104 104 tblTagEditor.setTagCellEditor(new TagSpecificationAwareTagCellEditor()); 105 105 TagTableCellRenderer renderer = new TagTableCellRenderer(); -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/editor/TagSpecificationAwareTagCellEditor.java
r30488 r31560 15 15 private static final Logger logger = Logger.getLogger(TagCellEditor.class.getName()); 16 16 17 /** 17 public TagSpecificationAwareTagCellEditor() { 18 super(0); 19 } 20 21 /** 18 22 * initializes the auto completion list when the table cell editor starts 19 23 * to edit the key of a tag. In this case the auto completion list is
Note:
See TracChangeset
for help on using the changeset viewer.