Ignore:
Timestamp:
03.12.2009 19:02:25 (2 years ago)
Author:
Gubaer
Message:

fixed #3400: relation editor: improvement to highlight an element
fixed #3873: Feature request: download selected elements in relation editor
New: Dbl-Click in member table to set the map selection to this member
New: Ctrl-Dbl-Clik in member table to add the member to the the map selection
New: Download selected incomplete members only

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmReader.java

    r2512 r2563  
    1212import java.util.List; 
    1313import java.util.Map; 
     14import java.util.logging.Level; 
    1415import java.util.logging.Logger; 
    1516 
     
    443444            w.setNodes(wayNodes); 
    444445            if (incomplete) { 
    445                 logger.warning(tr("Marked way {0} with {1} nodes incomplete because at least one node was missing in the " + 
    446                         "loaded data and is therefore incomplete too.", externalWayId, w.getNodesCount())); 
     446                if (logger.isLoggable(Level.FINE)) { 
     447                    logger.fine(tr("Marked way {0} with {1} nodes incomplete because at least one node was missing in the " + 
     448                            "loaded data and is therefore incomplete too.", externalWayId, w.getNodesCount())); 
     449                } 
    447450                w.incomplete = true; 
    448451                ds.addPrimitive(w); 
Note: See TracChangeset for help on using the changeset viewer.