Add "BTC" to all amount widgets, to make clear what the unit is

This commit is contained in:
Wladimir J. van der Laan 2011-07-06 20:41:13 +02:00
parent 64c8b69948
commit e1f3d64c4a
1 changed files with 1 additions and 0 deletions

View File

@ -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);