Changeset 18487 in josm for trunk/src/org/openstreetmap/josm/actions
- Timestamp:
- 2022-06-13T17:59:52+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java
r18485 r18487 1153 1153 if (cycleList.size() == 2 && !waitForMouseUpParameter 1154 1154 // This was a nested if statement (see commented code below) 1155 && (!(osm.equals(old) || osm.isNew() || platformMenuShortcutKeyMask))) {1155 && !(osm.equals(old) || osm.isNew() || platformMenuShortcutKeyMask)) { 1156 1156 cyclePrims = false; 1157 1157 osm = old; 1158 // else defer toggling to mouseRelease time in those cases:1159 /*1160 * osm == old -- the true nearest node is the1161 * selected one osm is a new node -- do not break1162 * unglue ways in ALT mode ctrl is pressed -- ctrl1163 * generally works on mouseReleased1164 */1158 // else defer toggling to mouseRelease time in those cases: 1159 /* 1160 * osm == old -- the true nearest node is the 1161 * selected one osm is a new node -- do not break 1162 * unglue ways in ALT mode ctrl is pressed -- ctrl 1163 * generally works on mouseReleased 1164 */ 1165 1165 } 1166 1166 }
Note:
See TracChangeset
for help on using the changeset viewer.