Fix window visibility toggling bug with "minimized to systray" enabled

The issue seemed to affect Windows only.
This commit is contained in:
Christophe Dumez 2012-06-27 17:46:26 +03:00
parent 33147d842c
commit d7eb29ab71

View file

@ -701,9 +701,10 @@ void MainWindow::toggleVisibility(QSystemTrayIcon::ActivationReason e) {
if(!unlockUI())
return;
}
// Make sure the window is not minimized
setWindowState(windowState() & ~Qt::WindowMinimized | Qt::WindowActive);
// Then show it
show();
raise();
activateWindow();
}else{
hide();
}