Skip to content

Commit cbc0cf7

Browse files
fix 2697 (#2731)
1 parent 884919a commit cbc0cf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Intersect.Client.Framework/Gwen/Control/TextBoxNumeric.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Globalization;
1+
using System.Globalization;
22
using Intersect.Client.Framework.Gwen.Control.EventArguments;
33

44
namespace Intersect.Client.Framework.Gwen.Control;
@@ -133,11 +133,11 @@ protected override void OnTextChanged()
133133
var text = Text;
134134
if (string.IsNullOrWhiteSpace(text) || text == "-")
135135
{
136-
_value = 0;
136+
Value = 0;
137137
}
138138
else
139139
{
140-
_value = double.Parse(text);
140+
Value = double.Parse(text);
141141
}
142142

143143
base.OnTextChanged();

0 commit comments

Comments
 (0)