Reset unit to default when clearing the field, to prevent confusion

This commit is contained in:
Wladimir J. van der Laan 2011-07-26 13:31:59 +02:00
parent f2b10f6469
commit 83c8d678aa
1 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,8 @@ void BitcoinAmountField::clear()
{
amount->clear();
decimals->clear();
// TODO: set default based on configuration
unit->setCurrentIndex(0);
}
bool BitcoinAmountField::validate()