Changeset 4562 in josm
- Timestamp:
- 2011-11-02T10:24:39+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java
r4509 r4562 885 885 886 886 // not allowed together: do not change dataset selection, return early 887 if ((shift && ctrl) || (ctrl && !released) || (!virtualWays.isEmpty())) 887 // Virtual Ways: if non-empty the cursor is above a virtual node. So don't highlight 888 // anything if about to drag the virtual node (i.e. !released) but continue if the 889 // cursor is only released above a virtual node by accident (i.e. released). See #7018 890 if ((shift && ctrl) || (ctrl && !released) || (!virtualWays.isEmpty() && !released)) 888 891 return; 889 892
Note:
See TracChangeset
for help on using the changeset viewer.