aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-10-18 11:17:03 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-10-18 11:17:03 +0300
commitdbe2e256a3c5b5c1640d6cc55a051d26ce7432d9 (patch)
treedfb5e2d379e4894f5657806a78936a43ef851053 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
parentc3424087c9a2aff7f509f9c866d151945633a382 (diff)
downloadTango-dbe2e256a3c5b5c1640d6cc55a051d26ce7432d9.tar.gz
Tango-dbe2e256a3c5b5c1640d6cc55a051d26ce7432d9.zip
Fixed Segments name editing.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
index bcab1c673..f7e2e8260 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs
@@ -276,5 +276,10 @@ namespace Tango.MachineStudio.Developer.Views
{
_vm.IsJobVisible = false;
}
+
+ private void ListBoxItem_PreviewMouseDown(object sender, MouseButtonEventArgs e)
+ {
+ listBoxSegments.SelectedItem = (sender as ListBoxItem).DataContext;
+ }
}
}