Changeset 22504 in osm for applications/editors
- Timestamp:
- 2010-07-31T02:01:08+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/Address.java
r22387 r22504 147 147 Collection<Command> cmds = new LinkedList<Command>(); 148 148 addAddrToPrimitive(currentMouseNode, cmds); 149 applyInputNumberChange(); 149 if (num == null) 150 applyInputNumberChange(); 150 151 } 151 152 setSelectedWay((Way)null); … … 155 156 if (wayInRelationAddr == null) { 156 157 // node exists but doesn't carry address information : add tags like a new node 158 if (ctrl) { 159 applyInputNumberChange(); 160 } 157 161 Collection<Command> cmds = new LinkedList<Command>(); 158 162 addAddrToPrimitive(currentMouseNode, cmds); … … 182 186 } else { 183 187 Collection<Command> cmds = new LinkedList<Command>(); 188 if (ctrl) { 189 applyInputNumberChange(); 190 } 184 191 if (tagPolygon.isSelected()) { 185 192 addAddrToPolygon(mouseOnExistingBuildingWays, cmds); … … 218 225 219 226 private void addAddrToPrimitive(OsmPrimitive osm, Collection<Command> cmds) { 220 // add the current tag addr:housenumber in node and member in relation 227 // add the current tag addr:housenumber in node and member in relation (if so configured) 221 228 if (shift) { 222 229 try {
Note:
See TracChangeset
for help on using the changeset viewer.