mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 15:33:51 +00:00
Autoscale improvements
This commit is contained in:
parent
3976db8f9d
commit
32270dc747
12 changed files with 640 additions and 513 deletions
|
|
@ -20,6 +20,9 @@ TraceModel::~TraceModel()
|
|||
void TraceModel::addTrace(Trace *t)
|
||||
{
|
||||
beginInsertRows(QModelIndex(), traces.size(), traces.size());
|
||||
connect(t, &Trace::nameChanged, [=]() {
|
||||
emit traceNameChanged(t);
|
||||
});
|
||||
traces.push_back(t);
|
||||
endInsertRows();
|
||||
emit traceAdded(t);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue