diff --git a/qml/crossQuick/Numeric.qml b/qml/crossQuick/Numeric.qml
index 6cfa4a0e780cc170e069660963f1b5e6a43dfcd4..47dc3a5e306a41e93d5479d0be4ac760a448a359 100644
--- a/qml/crossQuick/Numeric.qml
+++ b/qml/crossQuick/Numeric.qml
@@ -69,13 +69,13 @@ Control {
 	}
 	Component {
 		id: spinbox
-		X.SpinBoxDouble {
+		X.ScientificSpinBoxReal {
 			id: _spin;
 
-			min: param.min
-			max: param.max
+			from: param.min
+			to: param.max
 			decimals: param.decimals
-			stepSize: 1.0/Math.pow(10, param.decimals)
+			increment: 1.0/Math.pow(10, param.decimals)
 
 			value: param.value
 			notation: DoubleValidator.StandardNotation