From d406488bbb9817270cafed76410ef37ac3e9e08f Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Mon, 30 Dec 2024 21:19:43 +0100 Subject: [PATCH] Restoring original behavior of 'ignore properties' in width check --- src/db/db/dbRegionUtils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/db/dbRegionUtils.cc b/src/db/db/dbRegionUtils.cc index 1a14c5363..7faef74e6 100644 --- a/src/db/db/dbRegionUtils.cc +++ b/src/db/db/dbRegionUtils.cc @@ -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 ())); } }