We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaead00 commit 06c9d45Copy full SHA for 06c9d45
src/mpl/src/graphics.cpp
@@ -588,10 +588,10 @@ void Graphics::drawBundledNets(gui::Painter& painter,
588
template <typename T>
589
void Graphics::drawBundledNet(gui::Painter& painter,
590
const std::vector<T>& macros,
591
- const BundledNet& bundled_net)
+ const BundledNet& net)
592
{
593
- const T& source = macros[bundled_net.terminals.first];
594
- const T& target = macros[bundled_net.terminals.second];
+ const T& source = macros[net.terminals.first];
+ const T& target = macros[net.terminals.second];
595
596
if (target.isClusterOfUnplacedIOPins()) {
597
drawDistToRegion(painter, source, target);
0 commit comments