Restoring original behavior of 'ignore properties' in width check

This commit is contained in:
Matthias Koefferlein 2024-12-30 21:19:43 +01:00
parent 58d3efeea4
commit d406488bbb
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ SinglePolygonCheck::process (const db::PolygonWithProperties &polygon, std::vect
} while (edge_check.prepare_next_pass ());
for (auto ep = result.begin (); ep != result.end (); ++ep) {
res.push_back (db::EdgePairWithProperties (*ep, polygon.properties_id ()));
res.push_back (db::EdgePairWithProperties (*ep, pc_skip (m_options.prop_constraint) ? 0 : polygon.properties_id ()));
}
}