Skip to content

Commit 5f3cbde

Browse files
Increased max width of amount field to prevent number overflow bug.
1 parent d792e47 commit 5f3cbde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/bitcoinamountfield.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent) :
197197
amount = new AmountSpinBox(this);
198198
amount->setLocale(QLocale::c());
199199
amount->installEventFilter(this);
200-
amount->setMaximumWidth(170);
200+
amount->setMaximumWidth(240);
201201

202202
QHBoxLayout *layout = new QHBoxLayout(this);
203203
layout->addWidget(amount);

0 commit comments

Comments
 (0)