Increased max width of amount field to prevent number overflow bug.

This commit is contained in:
Brandon Ruggles 2018-05-20 01:09:16 -04:00
parent d792e47421
commit 5f3cbde9de

View file

@ -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);