1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

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
This commit is contained in:
Chocobo1 2017-05-02 15:12:24 +08:00
parent 67f44e03a2
commit da581dee41
2 changed files with 14 additions and 8 deletions

View File

@ -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)
else {
hide();
}
break;
}
default:
break;
}
}

View File

@ -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();