aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-12-26 14:04:34 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-12-26 14:04:34 +0200
commit3e71ab50870db524f7e17aa9d2042da52b15ad63 (patch)
treee1bee015a2ce129316bbc30a0ff6466f239b33fd /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels
parenta756bdd61609c9bd093e81d1e2a9edf6bd912882 (diff)
downloadTango-3e71ab50870db524f7e17aa9d2042da52b15ad63.tar.gz
Tango-3e71ab50870db524f7e17aa9d2042da52b15ad63.zip
Implemented integration IJobRunsLogger.
Implemented DEBUG/RELEASE JsonController. Implemented Local/Remote machine studio setting.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs
index 333a31802..84fffcc74 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs
@@ -1845,6 +1845,11 @@ namespace Tango.MachineStudio.Developer.ViewModels
{
await _machineDbContext.Jobs.Where(x => x.MachineGuid == SelectedMachine.Guid).Include(x => x.User).Include(x => x.User.Contact).LoadAsync();
+ foreach (var job in SelectedMachine.Jobs)
+ {
+ await job.Reload(_machineDbContext);
+ }
+
await _machineDbContext.ColorSpaces.LoadAsync();
await Task.Factory.StartNew(() =>