Fix flickering & not restoring from tray on some Linuxes (#1595).

Fix/work around KeePassXC flickering and not restoring from tray on some Linux systems, which happens if the window is hidden and minimized by code at the same time (see issue #1595).
This commit is contained in:
Joan Bruguera 2018-03-11 14:03:48 +01:00 committed by TheZ3ro
parent f620ad979f
commit 319c8201be
2 changed files with 1 additions and 4 deletions

View file

@ -127,7 +127,7 @@ int main(int argc, char** argv)
// start minimized if configured
bool minimizeOnStartup = config()->get("GUI/MinimizeOnStartup").toBool();
bool minimizeToTray = config()->get("GUI/MinimizeToTray").toBool();
if (minimizeOnStartup) {
if (minimizeOnStartup && !minimizeToTray) {
mainWindow.setWindowState(Qt::WindowMinimized);
}
if (!(minimizeOnStartup && minimizeToTray)) {