mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Merge pull request #1278 from wawuwo/fix-1273-crash-in-one-two-wires
Fix crash when coordinates of wire ends are in wrong order Fix #1273
This commit is contained in:
commit
565efd3b81
@ -983,7 +983,26 @@ bool Schematic::loadWires(QTextStream *stream, QList<Element*> *List)
|
||||
List->append(w);
|
||||
if(w->Label) List->append(w->Label);
|
||||
}
|
||||
else simpleInsertWire(w);
|
||||
else {
|
||||
// Quick fix for ra3xdh#1273.
|
||||
//
|
||||
// A wire whose (x1,y1) coordinates are not less than (x2,y2)
|
||||
// coordinates somehow deals some damage like crashes or funny behaviour.
|
||||
//
|
||||
// I wasn't able to understand how exactly this happens, i.e. why it's
|
||||
// important to have x1 less than x2 for a wire, so I decided to fix this
|
||||
// in a most straightforward way by "normalizing" the wire before installing
|
||||
// it into schematic
|
||||
if (w->x1 > w->x2) {
|
||||
std::swap(w->x1, w->x2);
|
||||
std::swap(w->y1, w->y2);
|
||||
} else if (w->x1 == w->x2 && w->y1 > w->y2) {
|
||||
std::swap(w->x1, w->x2);
|
||||
std::swap(w->y1, w->y2);
|
||||
}
|
||||
|
||||
simpleInsertWire(w);
|
||||
}
|
||||
}
|
||||
|
||||
QMessageBox::critical(0, QObject::tr("Error"),
|
||||
|
Loading…
x
Reference in New Issue
Block a user