mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 15:48:05 +00:00
Merge pull request #679 from laanwj/cmdline_minimize
Implement -min option to start minimized
This commit is contained in:
commit
8848a70ba1
@ -159,7 +159,7 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
{
|
{
|
||||||
// Put this in a block, so that BitcoinGUI is cleaned up properly before
|
// Put this in a block, so that BitcoinGUI is cleaned up properly before
|
||||||
// calling Shutdown().
|
// calling Shutdown() in case of exceptions.
|
||||||
BitcoinGUI window;
|
BitcoinGUI window;
|
||||||
splash.finish(&window);
|
splash.finish(&window);
|
||||||
OptionsModel optionsModel(pwalletMain);
|
OptionsModel optionsModel(pwalletMain);
|
||||||
@ -170,7 +170,15 @@ int main(int argc, char *argv[])
|
|||||||
window.setClientModel(&clientModel);
|
window.setClientModel(&clientModel);
|
||||||
window.setWalletModel(&walletModel);
|
window.setWalletModel(&walletModel);
|
||||||
|
|
||||||
window.show();
|
// If -min option passed, start window minimized.
|
||||||
|
if(GetBoolArg("-min"))
|
||||||
|
{
|
||||||
|
window.showMinimized();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
window.show();
|
||||||
|
}
|
||||||
|
|
||||||
app.exec();
|
app.exec();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user