diff options
author | Brandon Ruggles <brandonrninefive@gmail.com> | 2018-05-20 01:09:16 -0400 |
---|---|---|
committer | Brandon Ruggles <brandonrninefive@gmail.com> | 2018-05-20 01:09:16 -0400 |
commit | 5f3cbde9de842a8d565b6580c6050310d897065b (patch) | |
tree | 515986240acd5ee782078a79a62262b1b388e91d /src/qt/bitcoinamountfield.cpp | |
parent | d792e47421fcb9ce3b381c1e6d8902777ae3f9f3 (diff) |
Increased max width of amount field to prevent number overflow bug.
Diffstat (limited to 'src/qt/bitcoinamountfield.cpp')
-rw-r--r-- | src/qt/bitcoinamountfield.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoinamountfield.cpp b/src/qt/bitcoinamountfield.cpp index e8307ff125..68a9dc4c27 100644 --- a/src/qt/bitcoinamountfield.cpp +++ b/src/qt/bitcoinamountfield.cpp @@ -197,7 +197,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent) : amount = new AmountSpinBox(this); amount->setLocale(QLocale::c()); amount->installEventFilter(this); - amount->setMaximumWidth(170); + amount->setMaximumWidth(240); QHBoxLayout *layout = new QHBoxLayout(this); layout->addWidget(amount); |