aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-03-14 23:57:14 +0200
committerShlomo Hecht <shlomo@twine-s.com>2019-03-14 23:57:14 +0200
commit08443c61c8c7930e97149392b6dab0a0fd3de3bc (patch)
tree7487781f96bc3aef74fbb7bc47fc26dae56c57c3 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs
parent581fc5ccade02a541b9e9fff2ab8c34bf6deef2c (diff)
parentc4e05851c9d3ab73ebf0a81e9aef5ca7f8cec83a (diff)
downloadTango-08443c61c8c7930e97149392b6dab0a0fd3de3bc.tar.gz
Tango-08443c61c8c7930e97149392b6dab0a0fd3de3bc.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs
index 666a56704..e78047563 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/ViewModels/MachineTechViewVM.cs
@@ -1749,13 +1749,13 @@ namespace Tango.MachineStudio.Technician.ViewModels
/// <exception cref="NotImplementedException"></exception>
private void InitJobRunnerItem(JobRunnerItem item)
{
- item.StartJob += () =>
+ item.StartJob += async () =>
{
try
{
CheckMachineOperator();
- var handler = MachineOperator.Print(item.Job, item.ProcessParameters);
+ var handler = await MachineOperator.Print(item.Job, item.ProcessParameters);
item.JobHandler = handler;