[Qt] group variables below initial if-clauses in AmountSpinBox::stepEnabled

This commit is contained in:
Philip Kaufmann 2015-01-13 11:51:45 +01:00
parent 0fd9e2bf43
commit 80dd50ccba
1 changed files with 3 additions and 2 deletions

View File

@ -166,11 +166,12 @@ protected:
StepEnabled stepEnabled() const
{
StepEnabled rv = 0;
if (isReadOnly()) // Disable steps when AmountSpinBox is read-only
return StepNone;
if(text().isEmpty()) // Allow step-up with empty field
if (text().isEmpty()) // Allow step-up with empty field
return StepUpEnabled;
StepEnabled rv = 0;
bool valid = false;
CAmount val = value(&valid);
if(valid)