mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Fix start minimized to tray for unix
This commit is contained in:
parent
ed60a3dcce
commit
dc6c9186c9
1 changed files with 4 additions and 0 deletions
|
@ -106,7 +106,11 @@ namespace Bootstrap
|
|||
{
|
||||
// start minimized if configured
|
||||
if (config()->get("GUI/MinimizeOnStartup").toBool()) {
|
||||
#ifdef Q_OS_WIN
|
||||
mainWindow.showMinimized();
|
||||
#else
|
||||
mainWindow.hideWindow();
|
||||
#endif
|
||||
} else {
|
||||
mainWindow.bringToFront();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue