aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-02-05 12:15:16 +0100
committerWladimir J. van der Laan <[email protected]>2012-02-05 12:15:16 +0100
commitf69b82e78a16ea2ab124663414e6b2902b1b05e0 (patch)
tree1adc12df2d7fbda21092c7ce5b5d9ae780a56630 /src
parentAvoid advertising the node's address when it is not listening or IsInitialBlo... (diff)
downloaddiscoin-f69b82e78a16ea2ab124663414e6b2902b1b05e0.tar.xz
discoin-f69b82e78a16ea2ab124663414e6b2902b1b05e0.zip
Change up/down increment in UI to 0.001 BTC (issue #760)
Diffstat (limited to 'src')
-rw-r--r--src/qt/bitcoinamountfield.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoinamountfield.cpp b/src/qt/bitcoinamountfield.cpp
index 19cd5655c..9514ec846 100644
--- a/src/qt/bitcoinamountfield.cpp
+++ b/src/qt/bitcoinamountfield.cpp
@@ -22,6 +22,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent):
amount->setDecimals(8);
amount->installEventFilter(this);
amount->setMaximumWidth(170);
+ amount->setSingleStep(0.001);
QHBoxLayout *layout = new QHBoxLayout(this);
layout->addWidget(amount);