1
0
Fork 0

immediately delete the terminated universe

This commit is contained in:
Kevin Matz 2022-12-08 21:21:04 -05:00
parent 466efd7477
commit 47bc2c9ffd
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ void QSacnNode::terminate(const uint16_t num)
qDebug() << "Terminating universe " << QString::number(num);
Source::terminate(num);
emit terminating(tx_universes.value(num));
tx_universes.take(num)->deleteLater();
delete tx_universes.take(num);
}
}