Only compare attributes with display names (ones that don't have display names are normally internal attributes)

This commit is contained in:
blitzmann
2016-06-23 23:19:08 -04:00
parent 7a7a0f1eff
commit c8175d1191

View File

@@ -487,7 +487,8 @@ class ItemCompare(wx.Panel):
# get a dict of attrName: attrInfo of all unique attributes across all items
for item in self.items:
for attr in item.attributes.keys():
self.attrs[attr] = item.attributes[attr].info
if item.attributes[attr].info.displayName:
self.attrs[attr] = item.attributes[attr].info
# Process attributes for items and find ones that differ
for attr in self.attrs.keys():