From 8b3586feeef445172c9b071fe19d55e8b395b52f Mon Sep 17 00:00:00 2001 From: gg Date: Mon, 12 Jan 2026 20:18:36 -0500 Subject: [PATCH] drop minimize delay from 500 ms to 350 ms --- src/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 9b933229..da6ea32f 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1563,7 +1563,7 @@ void MainWindow::changeEvent(QEvent* event) } } else if (event->type() == QEvent::ActivationChange) { qDebug() << "changeEvent: ActivationChange. Active:" << this->isActiveWindow(); - QTimer::singleShot(500, this, [this](){ + QTimer::singleShot(350, this, [this](){ auto handle = this->windowHandle(); if (handle && !handle->isExposed()) { qDebug() << "ActivationChange (delayed): Window not exposed -> Hiding to tray"; -- 2.52.0