# HG changeset patch # User Andre Heinecke # Date 1395243331 0 # Node ID 5c616934cbe45e735905e8477d5e5be451e85faf # Parent 7e304573ebd1780dd058450143027e8ad30c9da2 Also check that the system tray supports messages diff -r 7e304573ebd1 -r 5c616934cbe4 ui/main.cpp --- a/ui/main.cpp Wed Mar 19 11:33:53 2014 +0000 +++ b/ui/main.cpp Wed Mar 19 15:35:31 2014 +0000 @@ -28,7 +28,8 @@ { QApplication app (argc, argv); - if (!QSystemTrayIcon::isSystemTrayAvailable()) { + if (!QSystemTrayIcon::isSystemTrayAvailable() || + !QSystemTrayIcon::supportsMessages()) { QMessageBox::critical(0, QString::fromLatin1(APPNAME), QObject::tr("Couldn't detect any system tray " "on this system. This software can only "