Implement -min option to start minimized

This commit is contained in:
Wladimir J. van der Laan 2011-12-03 17:57:30 +01:00
parent d8b8640863
commit 7915370cb9
1 changed files with 10 additions and 2 deletions

View File

@ -159,7 +159,7 @@ int main(int argc, char *argv[])
{
{
// Put this in a block, so that BitcoinGUI is cleaned up properly before
// calling Shutdown().
// calling Shutdown() in case of exceptions.
BitcoinGUI window;
splash.finish(&window);
OptionsModel optionsModel(pwalletMain);
@ -170,7 +170,15 @@ int main(int argc, char *argv[])
window.setClientModel(&clientModel);
window.setWalletModel(&walletModel);
window.show();
// If -min option passed, start window minimized.
if(GetBoolArg("-min"))
{
window.showMinimized();
}
else
{
window.show();
}
app.exec();