From a995cae000d1549a3ffd77142fed3989b5b66f8a Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 2 Aug 2023 16:54:47 +0200 Subject: [PATCH] set exit timer to 10 secs --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 9d04a04..79a0ab2 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -62,7 +62,7 @@ void MainWindow::onStopStartTimer() { void MainWindow::onRestartExitTimer() { m_exitTimer->stop(); - m_exitTimer->start(5 * 1000); + m_exitTimer->start(10 * 1000); } void MainWindow::onQuit() {