Use trace data after math operations for eye diagram plot

This commit is contained in:
Jan Käberich 2023-10-24 17:41:45 +02:00
parent 503d689d51
commit 79290d0f36
3 changed files with 8 additions and 1 deletions

View file

@ -1103,6 +1103,7 @@ void Trace::updateLastMath(vector<MathInfo>::reverse_iterator start)
lastMath = newLast;
// relay signals of end of math chain
connect(lastMath, &TraceMath::outputSamplesChanged, this, &Trace::dataChanged);
emit lastMathChanged();
emit typeChanged(this);
emit outputSamplesChanged(0, data.size());
}