Changeset 13198 in josm
- Timestamp:
- 2017-12-07T21:46:34+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/TagSettingsPanel.java
r13109 r13198 16 16 import org.openstreetmap.josm.gui.tagging.TagEditorPanel; 17 17 import org.openstreetmap.josm.gui.tagging.TagModel; 18 import org.openstreetmap.josm.spi.preferences.Config; 18 19 import org.openstreetmap.josm.tools.CheckParameterUtil; 19 20 … … 154 155 if (!oldValue.equals(newValue)) { 155 156 setProperty(key, newValue); 156 if (hashtagsKey != null ) {157 if (hashtagsKey != null && Config.getPref().getBoolean("upload.changeset.hashtags", true)) { 157 158 String newHashTags = String.join(";", model.findHashTags()); 158 159 String oldHashTags = Optional.ofNullable(getTagEditorValue(hashtagsKey)).orElse("");
Note:
See TracChangeset
for help on using the changeset viewer.