mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-02-01 13:24:13 +01:00
Merge branch 'master' of github.com:jankae/LibreVNA
This commit is contained in:
commit
aeea13347e
|
|
@ -69,6 +69,10 @@ Trace::Trace(QString name, QColor color, QString live)
|
|||
Trace::~Trace()
|
||||
{
|
||||
emit deleted(this);
|
||||
// delete math operations. The first math operation is the trace itself, only delete any additional operations
|
||||
while(mathOps.size() > 1) {
|
||||
removeMathOperation(mathOps.size()-1);
|
||||
}
|
||||
}
|
||||
|
||||
void Trace::clear(bool force) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue