mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-02-02 09:54:29 +00: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
@ -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…
x
Reference in New Issue
Block a user