From b229506d9c4cfdc10abb0d08152a93d84a29c80a Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Wed, 27 Mar 2019 13:33:32 -0400 Subject: [PATCH] Restore the systraymenu so that notification work --- oscar/mainwindow.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 5fc6a4d0..b1601eba 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -87,7 +87,8 @@ MainWindow::MainWindow(QWidget *parent) : qDebug() << "Using System Tray for Menu"; systray = new QSystemTrayIcon(QIcon(":/icons/logo.png"), this); systray->show(); -/****** systraymenu = new QMenu(this); + // seems to need the systray menu for notifications to work + systraymenu = new QMenu(this); systray->setContextMenu(systraymenu); QAction *a = systraymenu->addAction(STR_TR_OSCAR + " v" + VersionString); a->setEnabled(false); @@ -96,8 +97,8 @@ MainWindow::MainWindow(QWidget *parent) : // systraymenu->addAction(tr("Check for &Updates"), this, SLOT(on_actionCheck_for_Updates_triggered())); systraymenu->addSeparator(); systraymenu->addAction(tr("E&xit"), this, SLOT(close())); -*******/ - systraymenu = nullptr; + +// systraymenu = nullptr; } else { // if not available, the messages will popup in the taskbar qDebug() << "No System Tray menues"; systray = nullptr;