summaryrefslogtreecommitdiff
path: root/libsowatch/notification.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libsowatch/notification.cpp')
-rw-r--r--libsowatch/notification.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsowatch/notification.cpp b/libsowatch/notification.cpp
index e321b58..62a9b7d 100644
--- a/libsowatch/notification.cpp
+++ b/libsowatch/notification.cpp
@@ -15,7 +15,7 @@ QString Notification::displayTime() const
{
QDateTime dt = dateTime();
int secsDiff = dt.secsTo(QDateTime::currentDateTime());
- if (secsDiff < 1) {
+ if (secsDiff < 20) {
return "";
} else if (secsDiff < 60) {
return tr("%n second(s) ago", "", secsDiff);