Browse Source

Disable system tray icon menu when app is exiting

adaptive-webui-19844
Chocobo1 3 years ago
parent
commit
b8a84dbd83
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 7
      src/gui/mainwindow.cpp

7
src/gui/mainwindow.cpp

@ -1218,10 +1218,13 @@ void MainWindow::closeEvent(QCloseEvent *e) @@ -1218,10 +1218,13 @@ void MainWindow::closeEvent(QCloseEvent *e)
}
}
// Disable some UI to prevent user interactions
#ifndef Q_OS_MACOS
// Hide tray icon
if (m_systrayIcon)
m_systrayIcon->hide();
{
m_systrayIcon->setToolTip(tr("qBittorrent is shutting down..."));
m_trayIconMenu->setEnabled(false);
}
#endif
// Accept exit

Loading…
Cancel
Save