qt: remove extraneous padding introduced in multiwallet support patch
solve issue #2529
This commit is contained in:
parent
840e89e3a1
commit
1a31428ec0
2 changed files with 3 additions and 0 deletions
|
@ -20,8 +20,10 @@ WalletFrame::WalletFrame(BitcoinGUI *_gui) :
|
||||||
{
|
{
|
||||||
// Leave HBox hook for adding a list view later
|
// Leave HBox hook for adding a list view later
|
||||||
QHBoxLayout *walletFrameLayout = new QHBoxLayout(this);
|
QHBoxLayout *walletFrameLayout = new QHBoxLayout(this);
|
||||||
|
setContentsMargins(0,0,0,0);
|
||||||
walletStack = new WalletStack(this);
|
walletStack = new WalletStack(this);
|
||||||
walletStack->setBitcoinGUI(gui);
|
walletStack->setBitcoinGUI(gui);
|
||||||
|
walletFrameLayout->setContentsMargins(0,0,0,0);
|
||||||
walletFrameLayout->addWidget(walletStack);
|
walletFrameLayout->addWidget(walletStack);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@ WalletStack::WalletStack(QWidget *parent) :
|
||||||
clientModel(0),
|
clientModel(0),
|
||||||
bOutOfSync(true)
|
bOutOfSync(true)
|
||||||
{
|
{
|
||||||
|
setContentsMargins(0,0,0,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
WalletStack::~WalletStack()
|
WalletStack::~WalletStack()
|
||||||
|
|
Loading…
Reference in a new issue