mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Make future wire more thicker when laying a new wire
This commit is contained in:
parent
69bb9c3a1e
commit
20caefadf8
@ -584,9 +584,15 @@ void Schematic::drawPostPaintEvents(QPainter* painter) {
|
||||
painter->fillRect(p.x1, p.y1, p.x2, p.y2, QColor(200, 220, 240, 100));
|
||||
painter->drawRect(p.x1, p.y1, p.x2, p.y2);
|
||||
break;
|
||||
case _Line:
|
||||
case _Line: {
|
||||
painter->save();
|
||||
QPen lp{painter->pen()};
|
||||
lp.setWidth(p.a == 0 ? 1 : p.a);
|
||||
painter->setPen(lp);
|
||||
painter->drawLine(p.x1, p.y1, p.x2, p.y2);
|
||||
painter->restore();
|
||||
break;
|
||||
}
|
||||
case _Ellipse:
|
||||
painter->drawEllipse(p.x1, p.y1, p.x2, p.y2);
|
||||
break;
|
||||
|
@ -3213,7 +3213,7 @@ void Schematic::showEphemeralWire(const QPoint& a, const QPoint& b) noexcept {
|
||||
for (std::size_t i = 1; i < points.size(); i++) {
|
||||
auto m = points[i-1];
|
||||
auto n = points[i];
|
||||
PostPaintEvent(_Line, m.x(), m.y(), n.x(), n.y());
|
||||
PostPaintEvent(_Line, m.x(), m.y(), n.x(), n.y(), 3);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user