Browse Source

Fix crash when shutting down and clicked on system tray icon

Disconnect all signals of system tray icon when shutting down.

Closes #16324.
PR #16328.
adaptive-webui-19844
Chocobo1 3 years ago committed by GitHub
parent
commit
a2c44dedce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/gui/mainwindow.cpp

1
src/gui/mainwindow.cpp

@ -1236,6 +1236,7 @@ void MainWindow::closeEvent(QCloseEvent *e) @@ -1236,6 +1236,7 @@ void MainWindow::closeEvent(QCloseEvent *e)
#ifndef Q_OS_MACOS
if (m_systrayIcon)
{
m_systrayIcon->disconnect();
m_systrayIcon->setToolTip(tr("qBittorrent is shutting down..."));
m_trayIconMenu->setEnabled(false);
}

Loading…
Cancel
Save