diff options
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r-- | ecp5/arch.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc index 947d0f93..81a9725c 100644 --- a/ecp5/arch.cc +++ b/ecp5/arch.cc @@ -822,7 +822,7 @@ DecalXY Arch::getWireDecal(WireId wire) const decalxy.decal.type = DecalId::TYPE_WIRE; decalxy.decal.location = wire.location; decalxy.decal.z = wire.index; - decalxy.decal.active = false; + decalxy.decal.active = getBoundWireNet(wire) != nullptr; return decalxy; } |