From: Wladimir J. van der Laan Date: Mon, 27 Feb 2012 06:27:25 +0000 (-0800) Subject: Merge pull request #853 from laanwj/2012_02_altminimizetray X-Git-Tag: v0.4.0-unstable~129^2~179 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=fbbd42a535813b2d7e30dba44c5c36b70833fe55 Merge pull request #853 from laanwj/2012_02_altminimizetray Yet another alternative "minimize to tray" implementation Fixes problems with window positioning. --- fbbd42a535813b2d7e30dba44c5c36b70833fe55 diff --cc src/qt/bitcoingui.cpp index 2a725e7,3d6d7d7..abf2c38 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@@ -256,9 -245,8 +251,9 @@@ void BitcoinGUI::createActions( connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked())); connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked())); connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt())); - connect(openBitcoinAction, SIGNAL(triggered()), this, SLOT(showNormal())); + connect(openBitcoinAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized())); connect(encryptWalletAction, SIGNAL(triggered(bool)), this, SLOT(encryptWallet(bool))); + connect(backupWalletAction, SIGNAL(triggered()), this, SLOT(backupWallet())); connect(changePassphraseAction, SIGNAL(triggered()), this, SLOT(changePassphrase())); }