diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-02-05 12:15:16 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-02-05 12:15:16 +0100 |
| commit | f69b82e78a16ea2ab124663414e6b2902b1b05e0 (patch) | |
| tree | 1adc12df2d7fbda21092c7ce5b5d9ae780a56630 | |
| parent | Avoid advertising the node's address when it is not listening or IsInitialBlo... (diff) | |
| download | discoin-f69b82e78a16ea2ab124663414e6b2902b1b05e0.tar.xz discoin-f69b82e78a16ea2ab124663414e6b2902b1b05e0.zip | |
Change up/down increment in UI to 0.001 BTC (issue #760)
| -rw-r--r-- | src/qt/bitcoinamountfield.cpp | 1 |
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); |