From 1699ec54c982689fd7727438f0ade24b4cdafa0c Mon Sep 17 00:00:00 2001 From: mae <qt-info@nokia.com> Date: Mon, 29 Mar 2010 13:43:36 +0200 Subject: [PATCH] Shorter progress notification timeout for temporary tasks Reviewed-by: Roberto Raggi --- src/plugins/coreplugin/progressmanager/futureprogress.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/progressmanager/futureprogress.cpp b/src/plugins/coreplugin/progressmanager/futureprogress.cpp index 105e3aa3b0c..7691c1da2d5 100644 --- a/src/plugins/coreplugin/progressmanager/futureprogress.cpp +++ b/src/plugins/coreplugin/progressmanager/futureprogress.cpp @@ -47,6 +47,7 @@ using namespace Core; using namespace Core::Internal; const int notificationTimeout = 8000; +const int shortNotificationTimeout = 1000; namespace Core { namespace Internal { @@ -240,7 +241,7 @@ void FutureProgress::setFinished() m_waitingForUserInteraction = true; qApp->installEventFilter(this); } else if (!m_progress->hasError()) { - QTimer::singleShot(notificationTimeout, this, SLOT(fadeAway())); + QTimer::singleShot(shortNotificationTimeout, this, SLOT(fadeAway())); } } -- GitLab