Browse Source

Fix double click on system tray icon causing program to open and

minimize immediately

Closes #5826.
Simply ignore DoubleClick event, as it always come after Trigger
event
adaptive-webui-19844
Chocobo1 7 years ago
parent
commit
da581dee41
  1. 20
      src/gui/mainwindow.cpp
  2. 2
      src/gui/mainwindow.h

20
src/gui/mainwindow.cpp

@ -949,17 +949,17 @@ void MainWindow::notifyOfUpdate(QString) @@ -949,17 +949,17 @@ void MainWindow::notifyOfUpdate(QString)
}
// Toggle Main window visibility
void MainWindow::toggleVisibility(QSystemTrayIcon::ActivationReason e)
void MainWindow::toggleVisibility(const QSystemTrayIcon::ActivationReason reason)
{
if ((e == QSystemTrayIcon::Trigger) || (e == QSystemTrayIcon::DoubleClick)) {
switch (reason) {
case QSystemTrayIcon::Trigger: {
if (isHidden()) {
if (m_uiLocked) {
// Ask for UI lock password
if (!unlockUI())
return;
}
if (m_uiLocked && !unlockUI()) // Ask for UI lock password
return;
// Make sure the window is not minimized
setWindowState((windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
// Then show it
show();
raise();
@ -968,6 +968,12 @@ void MainWindow::toggleVisibility(QSystemTrayIcon::ActivationReason e) @@ -968,6 +968,12 @@ void MainWindow::toggleVisibility(QSystemTrayIcon::ActivationReason e)
else {
hide();
}
break;
}
default:
break;
}
}

2
src/gui/mainwindow.h

@ -103,7 +103,7 @@ public: @@ -103,7 +103,7 @@ public:
void showNotificationBaloon(QString title, QString msg) const;
private slots:
void toggleVisibility(QSystemTrayIcon::ActivationReason e = QSystemTrayIcon::Trigger);
void toggleVisibility(const QSystemTrayIcon::ActivationReason reason = QSystemTrayIcon::Trigger);
void balloonClicked();
void writeSettings();

Loading…
Cancel
Save