mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 10:43:19 -03:00
Merge pull request #9 from celil-kj/master
allow decimals such as .05 for amount of bitcoins to send
This commit is contained in:
commit
1a925b8e60
1 changed files with 2 additions and 7 deletions
|
@ -11,7 +11,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent):
|
|||
QWidget(parent), amount(0), decimals(0)
|
||||
{
|
||||
amount = new QValidatedLineEdit(this);
|
||||
amount->setValidator(new QRegExpValidator(QRegExp("[0-9]+"), this));
|
||||
amount->setValidator(new QRegExpValidator(QRegExp("[0-9]?"), this));
|
||||
amount->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||
amount->installEventFilter(this);
|
||||
amount->setMaximumWidth(100);
|
||||
|
@ -64,11 +64,6 @@ void BitcoinAmountField::clear()
|
|||
bool BitcoinAmountField::validate()
|
||||
{
|
||||
bool valid = true;
|
||||
if(amount->text().isEmpty())
|
||||
{
|
||||
amount->setValid(false);
|
||||
valid = false;
|
||||
}
|
||||
if(decimals->text().isEmpty())
|
||||
{
|
||||
decimals->setValid(false);
|
||||
|
@ -79,7 +74,7 @@ bool BitcoinAmountField::validate()
|
|||
|
||||
QString BitcoinAmountField::text() const
|
||||
{
|
||||
if(amount->text().isEmpty() || decimals->text().isEmpty())
|
||||
if(decimals->text().isEmpty())
|
||||
{
|
||||
return QString();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue