Changeset 35615 in osm for applications
- Timestamp:
- 2020-10-25T11:19:49+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/ExtractPointAction.java
r35579 r35615 54 54 return; 55 55 } 56 final boolean ok = checkAndConfirmOutlyingOperation("extnode", 57 tr("Extract node confirmation"), 58 tr("You are about to extract a node which can have other referrers not yet downloaded." 59 + "<br>" 60 + "This can cause problems because other objects (that you do not see) might use them." 61 + "<br>" 62 + "Do you really want to extract?"), 63 "", // incomplete node should not happen 64 selectedNodes, null); 65 if (!ok) { 66 return; 67 } 68 56 69 Node nd = selectedNodes.iterator().next(); 57 70 Node ndCopy = new Node(nd.getCoor());
Note:
See TracChangeset
for help on using the changeset viewer.