Ignore:
Timestamp:
2008-05-20T10:50:38+02:00 (16 years ago)
Author:
david
Message:

Allow SHIFT+CLICK in Draw Nodes mode to select node whether or not anything is selected (That gesture previously did nothing if there was something already selected)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java

    r642 r644  
    169169                if (n != null) {
    170170                        // user clicked on node
    171                         if (selection.isEmpty()) {
     171                        if (shift || selection.isEmpty()) {
    172172                                // select the clicked node and do nothing else
    173173                                // (this is just a convenience option so that people don't
Note: See TracChangeset for help on using the changeset viewer.