diff --git a/GUI/Model/Descriptor/DoubleProperty.cpp b/GUI/Model/Descriptor/DoubleProperty.cpp
index 0e114874bcf7963fac01a15f78eaeb42d6727b76..c19a0e9462c34a4bbac5f60f3d996dccaad4bd83 100644
--- a/GUI/Model/Descriptor/DoubleProperty.cpp
+++ b/GUI/Model/Descriptor/DoubleProperty.cpp
@@ -21,7 +21,7 @@ using std::variant;
 void DoubleProperty::init(const QString& label, const QString& tooltip, double value,
                           const QString& uidPrefix)
 {
-    init(label, tooltip, value, Unit::unitless, uidPrefix);
+    init(label, tooltip, value, Unit::unitless, 3, 0.01, RealLimits::nonnegative(), uidPrefix);
 }
 
 void DoubleProperty::init(const QString& label, const QString& tooltip, double value, uint decimals,