aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrandon Ruggles <brandonrninefive@gmail.com>2018-05-20 01:09:16 -0400
committerBrandon Ruggles <brandonrninefive@gmail.com>2018-05-20 01:09:16 -0400
commit5f3cbde9de842a8d565b6580c6050310d897065b (patch)
tree515986240acd5ee782078a79a62262b1b388e91d /src
parentd792e47421fcb9ce3b381c1e6d8902777ae3f9f3 (diff)
downloadbitcoin-5f3cbde9de842a8d565b6580c6050310d897065b.tar.xz
Increased max width of amount field to prevent number overflow bug.
Diffstat (limited to 'src')
-rw-r--r--src/qt/bitcoinamountfield.cpp2
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);