Use "show" instead of "showNormal" to keep maximized geometry

This commit is contained in:
Luis Ángel San Martín 2019-09-22 13:08:10 +02:00
parent 4a958b9291
commit 94d17a1d5c

View File

@ -96,7 +96,7 @@ void TrayIconController::showWindow()
#ifdef Q_OS_MACOS
OSXShowDockIcon();
#endif
window->showNormal();
window->show();
window->raise(); // for MacOS
window->activateWindow(); // for Windows
}