Changeset 30611 in osm for applications/editors/josm


Ignore:
Timestamp:
2014-08-31T02:04:24+02:00 (10 years ago)
Author:
donvip
Message:

[josm_terracer] fix #josm10253 - don't create an associatedStreet-relation as default

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/terracer/src/terracer/HouseNumberInputDialog.java

    r30192 r30611  
    183183            final String txt = relationExists ? tr("add to existing associatedStreet relation") : tr("create an associatedStreet relation");
    184184
    185             handleRelationCheckBox = new JCheckBox(txt, Main.pref.getBoolean(HANDLE_RELATION, true));
     185            handleRelationCheckBox = new JCheckBox(txt, relationExists ? Main.pref.getBoolean(HANDLE_RELATION, true) : false);
    186186            deleteOutlineCheckBox = new JCheckBox(tr("delete outline way"), Main.pref.getBoolean(DELETE_OUTLINE, true));
    187187
Note: See TracChangeset for help on using the changeset viewer.