Skip to content

Commit f69b82e

Browse files
committed
Change up/down increment in UI to 0.001 BTC (issue #760)
1 parent 5d1b8f1 commit f69b82e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/qt/bitcoinamountfield.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent):
2222
amount->setDecimals(8);
2323
amount->installEventFilter(this);
2424
amount->setMaximumWidth(170);
25+
amount->setSingleStep(0.001);
2526

2627
QHBoxLayout *layout = new QHBoxLayout(this);
2728
layout->addWidget(amount);

0 commit comments

Comments
 (0)