diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-06-21 07:35:59 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-06-21 07:36:49 +0200 |
| commit | 84114e341df1db77fb099ef58b7547f5b2b8be57 (patch) | |
| tree | 0c9a015b5d8e9aa9b1dc054c6c7704b456394080 /src/qt/bitcoinamountfield.cpp | |
| parent | introduce bitcoin amount field with split amount/decimals, to protect against... (diff) | |
| download | discoin-84114e341df1db77fb099ef58b7547f5b2b8be57.tar.xz discoin-84114e341df1db77fb099ef58b7547f5b2b8be57.zip | |
Fix some padding and focus issues with the new BitcoinAmountWidget
Diffstat (limited to 'src/qt/bitcoinamountfield.cpp')
| -rw-r--r-- | src/qt/bitcoinamountfield.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoinamountfield.cpp b/src/qt/bitcoinamountfield.cpp index e475441f1..19fa23018 100644 --- a/src/qt/bitcoinamountfield.cpp +++ b/src/qt/bitcoinamountfield.cpp @@ -26,6 +26,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent): layout->addWidget(new QLabel(QString("."))); layout->addWidget(decimals); layout->addStretch(1); + layout->setContentsMargins(0,0,0,0); setFocusPolicy(Qt::TabFocus); setLayout(layout); |