diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-06 20:41:13 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-06 20:41:13 +0200 |
| commit | e1f3d64c4a95893ec623fd082c82f443ae868fcd (patch) | |
| tree | 11afe3d4f0d23c868dda21aa4897cbf7b1c921f8 /src/qt/bitcoinamountfield.cpp | |
| parent | tab reorg phase 1: split main gui into "overview" and "history" (diff) | |
| download | discoin-e1f3d64c4a95893ec623fd082c82f443ae868fcd.tar.xz discoin-e1f3d64c4a95893ec623fd082c82f443ae868fcd.zip | |
Add "BTC" to all amount widgets, to make clear what the unit is
Diffstat (limited to 'src/qt/bitcoinamountfield.cpp')
| -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 a4cbbe0a7..f16c0c51e 100644 --- a/src/qt/bitcoinamountfield.cpp +++ b/src/qt/bitcoinamountfield.cpp @@ -25,6 +25,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent): layout->addWidget(amount); layout->addWidget(new QLabel(QString("."))); layout->addWidget(decimals); + layout->addWidget(new QLabel(QString(" BTC"))); layout->addStretch(1); layout->setContentsMargins(0,0,0,0); |