diff options
Diffstat (limited to 'testnotification/testnotification.cpp')
-rw-r--r-- | testnotification/testnotification.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testnotification/testnotification.cpp b/testnotification/testnotification.cpp index d541287..c07111f 100644 --- a/testnotification/testnotification.cpp +++ b/testnotification/testnotification.cpp @@ -8,7 +8,7 @@ TestNotification::TestNotification(Type type, const QString &title, const QStrin _time(QDateTime::currentDateTime()), _title(title), _body(body) { - const int high = 30000, low = 10000; + const int high = 5000, low = 1000; int rand = qrand() % ((high + 1) - low) + low; QTimer::singleShot(rand, this, SIGNAL(dismissed())); } |