Fix crash when new wire ends at the other wire's end

This commit is contained in:
Andrey Kalmykov 2025-02-07 15:53:34 +03:00
parent 6fb5f15c57
commit 8f0fc38487
2 changed files with 16 additions and 2 deletions

View File

@ -1493,7 +1493,7 @@ void MouseActions::MPressWire2(Schematic *Doc, QMouseEvent *Event, float fX, flo
case Qt::LeftButton: {
auto [hasChanges, lastNode] = Doc->connectWithWire({MAx3, MAy3}, {MAx2, MAy2});
if (lastNode->conn_count() > 1) {
if (lastNode == nullptr || lastNode->conn_count() > 1) {
// if last port is connected, then...
if (formerAction) {
// ...restore old action

View File

@ -3271,7 +3271,21 @@ std::pair<bool,Node*> Schematic::connectWithWire(const QPoint& a, const QPoint&
}
}
assert(false); // Must never get there
// If we've got there, then the point at which the wire ended
// was optimized away. For example if there was a wire AB…
//
// A B
// o--------o
//
// And a new wire was drawn from point M to point A:
//
// M A B
// o------o--------o
//
// then two wires wouild be merged and point A would be removed:
//
// M B
// o---------------o
return {resultFlags, nullptr};
}