aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-06-26 13:54:56 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-06-26 13:54:56 +0300
commit3c76016cff1a5e5d9c2ad270a954056e77ea9ce8 (patch)
treec800bfea49b6e3aebcb6b9f0b968724a519d72e4 /Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs
parentaf19a5785e20b8ca742038e7213ddbf2a2d9cd87 (diff)
downloadTango-3c76016cff1a5e5d9c2ad270a954056e77ea9ce8.tar.gz
Tango-3c76016cff1a5e5d9c2ad270a954056e77ea9ce8.zip
Fixed issue on numeric text input.
Updated machine studio update service to accept hashed passwords.. Added Job summery to job view.
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs')
-rw-r--r--Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs b/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs
index 1453a38a6..09b5e8f96 100644
--- a/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs
+++ b/Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs
@@ -177,12 +177,12 @@ namespace Tango.Touch.Controls
{
_text_block.Text = Value.ToString();
}
+ }
- BindingExpression b = GetBindingExpression(ValueProperty);
- if (b != null)
- {
- b.UpdateSource();
- }
+ BindingExpression b = GetBindingExpression(ValueProperty);
+ if (b != null)
+ {
+ b.UpdateSource();
}
}