From 20779c205a04b38daf0ec0a4583891b59184e79c Mon Sep 17 00:00:00 2001 From: Jean-Yves Avenard Date: Wed, 10 Jul 2013 22:04:14 +1000 Subject: [PATCH] Make default duration of error 10s 5s could make it a bit hard to read --- mythtv/libs/libmythui/mythnotification.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mythtv/libs/libmythui/mythnotification.h b/mythtv/libs/libmythui/mythnotification.h index d2fd75e9b9a..926a45e4a7a 100644 --- a/mythtv/libs/libmythui/mythnotification.h +++ b/mythtv/libs/libmythui/mythnotification.h @@ -346,6 +346,7 @@ class MUI_PUBLIC MythErrorNotification : public MythImageNotification const QString &details = QString()) : MythNotification(title, author, details), MythImageNotification(New, "error.png") { + SetDuration(10); } virtual MythEvent *clone(void) const { return new MythErrorNotification(*this); }