"oracle/translations/oracle_lt.ts" did not exist on "56db6cd0608f0acab4ba46f1b206ee675c446c79"
Commit 5bd37e1d authored by Matt Lowe's avatar Matt Lowe
Browse files

tray icon is now hidden and then removed

I noticed that sometimes I would have lots of icons in the sys tray. I
would have to mouse over them to make then be removed. This also happens
with some other programs too. I have added some code to hide() the sys
icon when the client is close, it seems to be helping with the issue.
Hard to reproduce, might also only be a windows issue.
parent 11d1d22d
......@@ -425,6 +425,8 @@ MainWindow::MainWindow(QWidget *parent)
MainWindow::~MainWindow()
{
trayIcon->hide();
trayIcon->deleteLater();
client->deleteLater();
clientThread->wait();
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment