Skip to content

Commit

Permalink
Explicitly set check notification duration to 5s
Browse files Browse the repository at this point in the history
  • Loading branch information
jyavenard committed Aug 14, 2013
1 parent 8b542e2 commit c9e8dcc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mythtv/libs/libmythui/mythnotification.h
Expand Up @@ -376,7 +376,10 @@ class MUI_PUBLIC MythCheckNotification : public MythNotification
public:
MythCheckNotification(const QString &title, const QString &author,
const QString &details = QString())
: MythNotification(Check, title, author, details) { }
: MythNotification(Check, title, author, details)
{
SetDuration(5);
}
};

#endif /* defined(__MythTV__mythnotification__) */

0 comments on commit c9e8dcc

Please sign in to comment.