Fixed idle timer alert

This commit is contained in:
Jordan Sherer 2018-10-10 15:36:53 -04:00
parent 4ffa82f695
commit e7e2f8357f

View File

@ -10106,7 +10106,10 @@ void MainWindow::tx_watchdog (bool triggered)
stopTx();
tx_status_label.setStyleSheet ("QLabel{background-color: #ff0000}");
tx_status_label.setText ("Idle watchdog");
QApplication::alert (this);
//QApplication::alert (this);
MessageBox::warning_message(this, QString("You have been idle for more than %1 minutes.").arg(m_config.watchdog()));
}
else
{