Fixed time delta average reset on activity clear

This commit is contained in:
Jordan Sherer 2018-10-31 22:10:04 -04:00
parent 1a9c611195
commit 5a0e2a8b14

View File

@ -6245,6 +6245,7 @@ void MainWindow::on_clearAction_triggered(QObject * sender){
if(sender == ui->tableWidgetRXAll){
m_bandActivity.clear();
clearTableWidget(ui->tableWidgetRXAll);
resetTimeDeltaAverage();
}
// TODO: jsherer - abstract this into a tableWidgetCallsReset function
@ -6252,6 +6253,7 @@ void MainWindow::on_clearAction_triggered(QObject * sender){
m_callActivity.clear();
clearTableWidget((ui->tableWidgetCalls));
createAllcallTableRows(ui->tableWidgetCalls, "");
resetTimeDeltaAverage();
}
if(sender == ui->extFreeTextMsgEdit){