Merge pull request #1253 from wawuwo/thicker-ephemeral-wire

Make future wire more thicker when laying a new wire
This commit is contained in:
Vadim Kuznetsov 2025-02-23 17:34:27 +01:00 committed by GitHub
commit 9c59da8c99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -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;

View File

@ -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);
}
}