From e7e2f8357f66ddd20ea38f0e73a612e9eef956fc Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Wed, 10 Oct 2018 15:36:53 -0400 Subject: [PATCH] Fixed idle timer alert --- mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index a10eea8..58dca1e 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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 {