From fbb2fc58f507cf23e140230bd467f664374e68a6 Mon Sep 17 00:00:00 2001 From: jpbruyere Date: Thu, 11 Feb 2016 04:35:16 +0100 Subject: [PATCH] set default value for Value as Double in NumericControl --- src/GraphicObjects/NumericControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GraphicObjects/NumericControl.cs b/src/GraphicObjects/NumericControl.cs index 409a200f..eb01815f 100644 --- a/src/GraphicObjects/NumericControl.cs +++ b/src/GraphicObjects/NumericControl.cs @@ -72,7 +72,7 @@ namespace Crow registerForGraphicUpdate (); } } - [XmlAttributeAttribute()][DefaultValue(0)] + [XmlAttributeAttribute()][DefaultValue(0.0)] public double Value { get { return _actualValue; } -- 2.47.3