Merge pull request #2572 from laanwj/2013_04_wasted_space

qt: remove extraneous padding introduced in multiwallet support patch
This commit is contained in:
Wladimir J. van der Laan 2013-04-26 07:10:35 -07:00
commit 3c3164da73
2 changed files with 3 additions and 0 deletions

View File

@ -20,8 +20,10 @@ WalletFrame::WalletFrame(BitcoinGUI *_gui) :
{
// Leave HBox hook for adding a list view later
QHBoxLayout *walletFrameLayout = new QHBoxLayout(this);
setContentsMargins(0,0,0,0);
walletStack = new WalletStack(this);
walletStack->setBitcoinGUI(gui);
walletFrameLayout->setContentsMargins(0,0,0,0);
walletFrameLayout->addWidget(walletStack);
}

View File

@ -16,6 +16,7 @@ WalletStack::WalletStack(QWidget *parent) :
clientModel(0),
bOutOfSync(true)
{
setContentsMargins(0,0,0,0);
}
WalletStack::~WalletStack()