Skip to content

Commit

Permalink
imp schematic: don't render junctions connected to lines/arcs
Browse files Browse the repository at this point in the history
  • Loading branch information
carrotIndustries committed Jan 31, 2021
1 parent 6c60078 commit 9621e73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/canvas/render.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ void Canvas::render(const SchematicJunction &junc)
draw_line(junc.position, junc.position + Coordi(0, 1000), c, 0, true, 0.75_mm);
img_line(junc.position, junc.position + Coordi(0, 1000), 0.75_mm, 0, true);
}
else if (junc.connected_bus_labels.size() || junc.connected_bus_rippers.size()
|| junc.connected_net_labels.size()) {
else if (junc.connected_bus_labels.size() || junc.connected_bus_rippers.size() || junc.connected_net_labels.size()
|| junc.connected_lines.size() || junc.connected_arcs.size()) {
// nop
}
else {
Expand Down

0 comments on commit 9621e73

Please sign in to comment.