[Qt] group variables below initial if-clauses in AmountSpinBox::stepEnabled
This commit is contained in:
parent
0fd9e2bf43
commit
80dd50ccba
1 changed files with 3 additions and 2 deletions
|
@ -166,11 +166,12 @@ protected:
|
||||||
|
|
||||||
StepEnabled stepEnabled() const
|
StepEnabled stepEnabled() const
|
||||||
{
|
{
|
||||||
StepEnabled rv = 0;
|
|
||||||
if (isReadOnly()) // Disable steps when AmountSpinBox is read-only
|
if (isReadOnly()) // Disable steps when AmountSpinBox is read-only
|
||||||
return StepNone;
|
return StepNone;
|
||||||
if(text().isEmpty()) // Allow step-up with empty field
|
if (text().isEmpty()) // Allow step-up with empty field
|
||||||
return StepUpEnabled;
|
return StepUpEnabled;
|
||||||
|
|
||||||
|
StepEnabled rv = 0;
|
||||||
bool valid = false;
|
bool valid = false;
|
||||||
CAmount val = value(&valid);
|
CAmount val = value(&valid);
|
||||||
if(valid)
|
if(valid)
|
||||||
|
|
Loading…
Reference in a new issue