mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 13:58:51 +03:00
- Use standard Qt notification as fallback if libnotify failed
This commit is contained in:
parent
17f712e3e0
commit
d227e744d9
1 changed files with 3 additions and 2 deletions
|
@ -67,6 +67,8 @@
|
||||||
|
|
||||||
using namespace libtorrent;
|
using namespace libtorrent;
|
||||||
|
|
||||||
|
#define TIME_TRAY_BALLOON 5000
|
||||||
|
|
||||||
/*****************************************************
|
/*****************************************************
|
||||||
* *
|
* *
|
||||||
* GUI *
|
* GUI *
|
||||||
|
@ -814,10 +816,9 @@ void GUI::showNotificationBaloon(QString title, QString msg) const {
|
||||||
if(success)
|
if(success)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#else
|
#endif
|
||||||
if(systrayIcon)
|
if(systrayIcon)
|
||||||
systrayIcon->showMessage(title, msg, QSystemTrayIcon::Information, TIME_TRAY_BALLOON);
|
systrayIcon->showMessage(title, msg, QSystemTrayIcon::Information, TIME_TRAY_BALLOON);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue