mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Restore the systraymenu so that notification work
This commit is contained in:
parent
ae6804096a
commit
b229506d9c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user