Fix: Wrong logic in recent extrude node fix

A local change that I forgot to add to the commit before pushing.
This commit is contained in:
Hans Goudey
2023-04-28 14:14:32 -04:00
parent 060216ac31
commit bea6391188

View File

@@ -101,7 +101,7 @@ static void remove_non_propagated_attributes(
if (!id.is_anonymous()) {
return true;
}
if (!propagation_info.propagate(id.anonymous_id())) {
if (propagation_info.propagate(id.anonymous_id())) {
return true;
}
return false;