Skip to content

Commit

Permalink
http://bitnami/issues/7897 Dont reuse geometry if colors dont match
Browse files Browse the repository at this point in the history
  • Loading branch information
WeltWeitBau committed Mar 1, 2024
1 parent c2cdca4 commit 0b5f7f7
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,10 @@ private String getRepresentationMapKey(HashMapVirtualObject ifcMappedItem) {
key.append(mappingSource.getOid());

Set<HashMapVirtualObject> colours = getColours(ifcMappedItem);
if(colours == null) {
return key.toString();
}

for(HashMapVirtualObject colour : colours) {
key.append("_").append(formatColour(colour));
}
Expand Down

0 comments on commit 0b5f7f7

Please sign in to comment.