mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +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";
|
qDebug() << "Using System Tray for Menu";
|
||||||
systray = new QSystemTrayIcon(QIcon(":/icons/logo.png"), this);
|
systray = new QSystemTrayIcon(QIcon(":/icons/logo.png"), this);
|
||||||
systray->show();
|
systray->show();
|
||||||
/****** systraymenu = new QMenu(this);
|
// seems to need the systray menu for notifications to work
|
||||||
|
systraymenu = new QMenu(this);
|
||||||
systray->setContextMenu(systraymenu);
|
systray->setContextMenu(systraymenu);
|
||||||
QAction *a = systraymenu->addAction(STR_TR_OSCAR + " v" + VersionString);
|
QAction *a = systraymenu->addAction(STR_TR_OSCAR + " v" + VersionString);
|
||||||
a->setEnabled(false);
|
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->addAction(tr("Check for &Updates"), this, SLOT(on_actionCheck_for_Updates_triggered()));
|
||||||
systraymenu->addSeparator();
|
systraymenu->addSeparator();
|
||||||
systraymenu->addAction(tr("E&xit"), this, SLOT(close()));
|
systraymenu->addAction(tr("E&xit"), this, SLOT(close()));
|
||||||
*******/
|
|
||||||
systraymenu = nullptr;
|
// systraymenu = nullptr;
|
||||||
} else { // if not available, the messages will popup in the taskbar
|
} else { // if not available, the messages will popup in the taskbar
|
||||||
qDebug() << "No System Tray menues";
|
qDebug() << "No System Tray menues";
|
||||||
systray = nullptr;
|
systray = nullptr;
|
||||||
|
Loading…
Reference in New Issue
Block a user