Changeset 1117 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2008-12-13T01:13:32+01:00 (15 years ago)
Author:
framm
Message:
  • list relation conflicts in conflict list. this is one issue relating to bug #1726 but not yet a full fix.
File:
1 edited

Legend:

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

    r1084 r1117  
    127127                        if (osm instanceof Way)
    128128                                model.addElement(osm);
    129         }
     129        for (OsmPrimitive osm : this.conflicts.keySet())
     130            if (osm instanceof Relation)
     131                model.addElement(osm);
     132    }
    130133
    131134        public final void add(Map<OsmPrimitive, OsmPrimitive> conflicts) {
Note: See TracChangeset for help on using the changeset viewer.