From d7fcfa3d0fb0cc854b9bafe2d44d6c00ed8316fa Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 13 Dec 2023 13:59:00 +0100 Subject: [PATCH] Click the Exit button after 5 seconds timeout (old timeout: 60s). --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 89f1e09..af91863 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -146,7 +146,7 @@ void MainWindow::onEnableExit() { void MainWindow::onRestartExitTimer() { m_exitTimer->stop(); - m_exitTimer->start(60 * 1000); + m_exitTimer->start(5 * 1000); scrollDownTextEdit(); ui->updateStatus->setEnabled(false);