Shorter progress notification timeout for temporary tasks

Reviewed-by: Roberto Raggi
This commit is contained in:
mae
2010-03-29 13:43:36 +02:00
parent b65c257349
commit 1699ec54c9

View File

@@ -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()));
}
}