diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-26 13:54:56 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-26 13:54:56 +0300 |
| commit | 3c76016cff1a5e5d9c2ad270a954056e77ea9ce8 (patch) | |
| tree | c800bfea49b6e3aebcb6b9f0b968724a519d72e4 /Software/Visual_Studio/Tango.Touch/Controls/TouchNumericTextBox.cs | |
| parent | af19a5785e20b8ca742038e7213ddbf2a2d9cd87 (diff) | |
| download | Tango-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.cs | 10 |
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(); } } |
