diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-10-18 11:17:03 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-10-18 11:17:03 +0300 |
| commit | dbe2e256a3c5b5c1640d6cc55a051d26ce7432d9 (patch) | |
| tree | dfb5e2d379e4894f5657806a78936a43ef851053 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs | |
| parent | c3424087c9a2aff7f509f9c866d151945633a382 (diff) | |
| download | Tango-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.cs | 5 |
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; + } } } |
