diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-11-17 11:02:32 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-11-17 11:09:08 +0100 |
| commit | 19f2aa948797a604ec26cbad191e6544b2639ba6 (patch) | |
| tree | f8bbe7d5a3e590ce9ebbb777d7c0634d1e5a0713 /src/qt | |
| parent | Merge pull request #5198 (diff) | |
| parent | [Qt] Fix height of BitcoinAmountField (diff) | |
| download | discoin-19f2aa948797a604ec26cbad191e6544b2639ba6.tar.xz discoin-19f2aa948797a604ec26cbad191e6544b2639ba6.zip | |
Merge pull request #5287
7335ca1 [Qt] Fix height of BitcoinAmountField (Cozz Lovan)
Diffstat (limited to 'src/qt')
| -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 6e35bf17b..2c100337d 100644 --- a/src/qt/bitcoinamountfield.cpp +++ b/src/qt/bitcoinamountfield.cpp @@ -130,6 +130,7 @@ public: extra += hint - style()->subControlRect(QStyle::CC_SpinBox, &opt, QStyle::SC_SpinBoxEditField, this).size(); hint += extra; + hint.setHeight(h); opt.rect = rect(); |