- Timestamp:
- 2007-11-04T22:41:35+01:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java
r454 r455 207 207 setCursor(ImageProvider.getCursor("rotate", null)); 208 208 } else if (!osmColl.isEmpty()) { 209 // Only add to selection for now, we only do replace and remove in 210 // mouseReleased if the user didn't try to move. 211 selectPrims(osmColl, true, ctrl); 209 // Don't replace the selection now if the user clicked on a 210 // selected object (this would break moving of selected groups). 211 // We'll do that later in mouseReleased if the user didn't try to 212 // move. 213 selectPrims(osmColl, 214 shift || Main.ds.getSelected().containsAll(osmColl), 215 ctrl); 212 216 mode = Mode.move; 213 217 } else {
Note:
See TracChangeset
for help on using the changeset viewer.