aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2018-12-17 09:41:41 +0200
committerShlomo Hecht <shlomo@twine-s.com>2018-12-17 09:41:41 +0200
commit9562ca15079cdbf2bcfd11c8c8def4a8e4573a78 (patch)
tree480bb5f4a49a398d789197006e66ca76d78ff007 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views
parentfc23da7f3510cce58308841eefb96d59868317ff (diff)
parentd8d1128887089087578286f37561dc8942726ba4 (diff)
downloadTango-9562ca15079cdbf2bcfd11c8c8def4a8e4573a78.tar.gz
Tango-9562ca15079cdbf2bcfd11c8c8def4a8e4573a78.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/JobView.xaml.cs4
1 files changed, 2 insertions, 2 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 8c58690fd..f3af53352 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
@@ -65,11 +65,11 @@ namespace Tango.MachineStudio.Developer.Views
if (_vm != null && _vm.ActiveJob != null)
{
List<Segment> segments = new List<Segment>();
- foreach (var s in _vm.ActiveJob.Segments.OrderBy(x => x.SegmentIndex))
+ foreach (var s in _vm.ActiveJob.OrderedSegments)
{
segments.Add(s);
- if (_vm.ActiveJob.EnableInterSegment && _vm.ActiveJob.Segments.IndexOf(s) != _vm.ActiveJob.Segments.Count - 1)
+ if (_vm.ActiveJob.EnableInterSegment && _vm.ActiveJob.OrderedSegments.IndexOf(s) != _vm.ActiveJob.OrderedSegments.Count - 1)
{
segments.Add(new Segment()
{