Browse Source

- No need for systray integration to be enabled to use libnotify

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
507b9b149e
  1. 3
      src/GUI.cpp

3
src/GUI.cpp

@ -803,7 +803,7 @@ void GUI::updateGUI() { @@ -803,7 +803,7 @@ void GUI::updateGUI() {
void GUI::showNotificationBaloon(QString title, QString msg) const {
QSettings settings(QString::fromUtf8("qBittorrent"), QString::fromUtf8("qBittorrent"));
if(systrayIcon && settings.value(QString::fromUtf8("Preferences/General/NotificationBaloons"), true).toBool()) {
if(settings.value(QString::fromUtf8("Preferences/General/NotificationBaloons"), true).toBool()) {
#ifdef WITH_LIBNOTIFY
if (notify_init ("summary-body")) {
NotifyNotification* notification;
@ -815,6 +815,7 @@ void GUI::showNotificationBaloon(QString title, QString msg) const { @@ -815,6 +815,7 @@ void GUI::showNotificationBaloon(QString title, QString msg) const {
return;
}
#else
if(systrayIcon)
systrayIcon->showMessage(title, msg, QSystemTrayIcon::Information, TIME_TRAY_BALLOON);
#endif
}

Loading…
Cancel
Save