aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SharedUI/Controls/ScriptEditorControl.xaml.cs
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2018-05-06 09:19:00 +0300
committerAvi Levkovich <avi@twine-s.com>2018-05-06 09:19:00 +0300
commitffe713f1081123ee6e9b24193b5d28f058ed7d38 (patch)
tree601a3a15dfdbd2d46b36e3d41b771b23d074fd5d /Software/Visual_Studio/Tango.SharedUI/Controls/ScriptEditorControl.xaml.cs
parent1259efb89a2bbb17b7b1d42762737aa2c79fa020 (diff)
parentfef42b802216997a4970f8ed25fcde766327955c (diff)
downloadTango-ffe713f1081123ee6e9b24193b5d28f058ed7d38.tar.gz
Tango-ffe713f1081123ee6e9b24193b5d28f058ed7d38.zip
integration chsanges
Diffstat (limited to 'Software/Visual_Studio/Tango.SharedUI/Controls/ScriptEditorControl.xaml.cs')
-rw-r--r--Software/Visual_Studio/Tango.SharedUI/Controls/ScriptEditorControl.xaml.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.SharedUI/Controls/ScriptEditorControl.xaml.cs b/Software/Visual_Studio/Tango.SharedUI/Controls/ScriptEditorControl.xaml.cs
index a74e649c0..3fe87c7e2 100644
--- a/Software/Visual_Studio/Tango.SharedUI/Controls/ScriptEditorControl.xaml.cs
+++ b/Software/Visual_Studio/Tango.SharedUI/Controls/ScriptEditorControl.xaml.cs
@@ -182,7 +182,7 @@ namespace Tango.SharedUI.Controls
foreach (var v in variables)
{
- var hT = IntellisenseTypes.SingleOrDefault(x => x.Value.Name == v.Type);
+ var hT = IntellisenseTypes.SingleOrDefault(x => x.Key == v.Type);
if (hT.Value != null)
{
@@ -259,7 +259,7 @@ namespace Tango.SharedUI.Controls
- foreach (var name in HighlightTypes.Select(x => x.Value).Select(x => x.Name))
+ foreach (var name in HighlightTypes.Select(x => x.Key))
{
code += String.Format("<Word>{0}</Word>", name) + Environment.NewLine;
}