Fix incrementation of LcdSpinBox QInputDialog

Closes #4218
This commit is contained in:
tresf
2018-03-06 14:35:24 -05:00
parent 788c990ae1
commit 38b69a7e3a

View File

@@ -178,7 +178,8 @@ void LcdSpinBox::enterValue()
arg( model()->maxValue() ),
model()->value(),
model()->minValue(),
model()->maxValue(), 4, &ok );
model()->maxValue(),
model()->step<int>(), &ok );
if( ok )
{