forked from qt-creator/qt-creator
Shorter progress notification timeout for temporary tasks
Reviewed-by: Roberto Raggi
This commit is contained in:
@@ -47,6 +47,7 @@ using namespace Core;
|
|||||||
using namespace Core::Internal;
|
using namespace Core::Internal;
|
||||||
|
|
||||||
const int notificationTimeout = 8000;
|
const int notificationTimeout = 8000;
|
||||||
|
const int shortNotificationTimeout = 1000;
|
||||||
|
|
||||||
namespace Core {
|
namespace Core {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
@@ -240,7 +241,7 @@ void FutureProgress::setFinished()
|
|||||||
m_waitingForUserInteraction = true;
|
m_waitingForUserInteraction = true;
|
||||||
qApp->installEventFilter(this);
|
qApp->installEventFilter(this);
|
||||||
} else if (!m_progress->hasError()) {
|
} else if (!m_progress->hasError()) {
|
||||||
QTimer::singleShot(notificationTimeout, this, SLOT(fadeAway()));
|
QTimer::singleShot(shortNotificationTimeout, this, SLOT(fadeAway()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user