Changeset 26509 in osm for applications/editors/josm/plugins/utilsplugin2
- Timestamp:
- 2011-08-11T00:45:56+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/SplitObjectAction.java
r26257 r26509 86 86 int last = w.getNodesCount() - 1; 87 87 // Only closed ways with at least four nodes 88 // (i.e. five members since the thefirst/last is listed twice)88 // (i.e. five members since the first/last is listed twice) 89 89 // can be split into two objects 90 90 if (last <= 4 || !w.isClosed()) { -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/selection/AdjacentWaysAction.java
r25876 r26509 24 24 public AdjacentWaysAction() { 25 25 super(tr("Adjacent ways"), "adjways", 26 tr("Adjacent ways will be selected. Nodes wi il be deselected."),26 tr("Adjacent ways will be selected. Nodes will be deselected."), 27 27 Shortcut.registerShortcut("tools:adjways", tr("Tool: {0}","Adjacent ways"), 28 28 KeyEvent.VK_E, Shortcut.GROUP_EDIT, Shortcut.SHIFT_DEFAULT), true);
Note:
See TracChangeset
for help on using the changeset viewer.