Changeset 6409 in josm
- Timestamp:
- 2013-11-23T20:46:44+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/TagSettingsPanel.java
r6401 r6409 81 81 82 82 public void initFromChangeset(Changeset cs) { 83 String currentComment = getTagEditorValue("comment");84 83 Map<String,String> tags = getDefaultTags(); 85 84 if (cs != null) { … … 87 86 } 88 87 if (tags.get("comment") == null) { 89 tags.put("comment", currentComment);88 tags.put("comment", getTagEditorValue("comment")); 90 89 } 91 90 if (tags.get("source") == null) { 92 tags.put("source", "");91 tags.put("source", getTagEditorValue("source")); 93 92 } 94 93 String agent = Version.getInstance().getAgentString(false);
Note:
See TracChangeset
for help on using the changeset viewer.