diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-04-26 07:38:24 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-04-26 07:38:24 +0200 |
| commit | 1a31428ec0b1dcf692edd454744b15cc3bee7a4c (patch) | |
| tree | b455a5b725136613efd3a2ac0392fcf4a56d6608 /src/qt/walletframe.cpp | |
| parent | Merge pull request #2563 from Diapolo/translations (diff) | |
| download | discoin-1a31428ec0b1dcf692edd454744b15cc3bee7a4c.tar.xz discoin-1a31428ec0b1dcf692edd454744b15cc3bee7a4c.zip | |
qt: remove extraneous padding introduced in multiwallet support patch
solve issue #2529
Diffstat (limited to 'src/qt/walletframe.cpp')
| -rw-r--r-- | src/qt/walletframe.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index b5947caf3..83e4255c9 100644 --- a/src/qt/walletframe.cpp +++ b/src/qt/walletframe.cpp @@ -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); } |