diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-04-26 07:10:35 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-04-26 07:10:35 -0700 |
commit | 3c3164da736d57bccc393f160236a507eacbae19 (patch) | |
tree | 3a6e6476aa5e20c75afd9ce1c2fe0fdff5ea8d24 | |
parent | 88a18060f33191c0d6fb3d509cb6f7ee1f3cc50b (diff) | |
parent | 1a31428ec0b1dcf692edd454744b15cc3bee7a4c (diff) |
Merge pull request #2572 from laanwj/2013_04_wasted_space
qt: remove extraneous padding introduced in multiwallet support patch
-rw-r--r-- | src/qt/walletframe.cpp | 2 | ||||
-rw-r--r-- | src/qt/walletstack.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index b5947caf3a..83e4255c9f 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); } diff --git a/src/qt/walletstack.cpp b/src/qt/walletstack.cpp index 42d86956be..9e3060e86b 100644 --- a/src/qt/walletstack.cpp +++ b/src/qt/walletstack.cpp @@ -16,6 +16,7 @@ WalletStack::WalletStack(QWidget *parent) : clientModel(0), bOutOfSync(true) { + setContentsMargins(0,0,0,0); } WalletStack::~WalletStack() |