Changeset 5129 in josm


Ignore:
Timestamp:
Mar 29, 2012 12:06:24 PM (14 months ago)
Author:
akks
Message:

fix #7557: ID# shown twice in middle click selection window

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MapStatus.java

    r5051 r5129  
    529529            } 
    530530            text.append(name); 
    531  
    532             if (!osm.isNew()) { 
     531             
     532            boolean idShown = Main.pref.getBoolean("osm-primitives.showid"); 
     533            // fix #7557 - do not show ID twice 
     534             
     535            if (!osm.isNew() && !idShown) { 
    533536                text.append(" [id="+osm.getId()+"]"); 
    534537            } 
Note: See TracChangeset for help on using the changeset viewer.