1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 14:57:52 +00:00

- Use standard Qt notification as fallback if libnotify failed

This commit is contained in:
Christophe Dumez 2009-11-25 22:36:42 +00:00
parent 17f712e3e0
commit d227e744d9

View File

@ -67,6 +67,8 @@
using namespace libtorrent;
#define TIME_TRAY_BALLOON 5000
/*****************************************************
* *
* GUI *
@ -814,10 +816,9 @@ void GUI::showNotificationBaloon(QString title, QString msg) const {
if(success)
return;
}
#else
#endif
if(systrayIcon)
systrayIcon->showMessage(title, msg, QSystemTrayIcon::Information, TIME_TRAY_BALLOON);
#endif
}
}