diff options
| author | Roy <Roy.mail.net@gmail.com> | 2023-03-05 22:47:23 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2023-03-05 22:47:23 +0200 |
| commit | a47bbe8211c4b7a02c6974cba017d77ea31ffc37 (patch) | |
| tree | 59e94a7511053aaa0dc78978cb572f3a8fe3c57a /Software/Visual_Studio/FSE/Tango.FSE.UI | |
| parent | c256fc124a867707c787074c9076227341766794 (diff) | |
| download | Tango-a47bbe8211c4b7a02c6974cba017d77ea31ffc37.tar.gz Tango-a47bbe8211c4b7a02c6974cba017d77ea31ffc37.zip | |
Dialog Adaptations.
Separate Job View.
Machine Status View Start.
EurekaTouchPanel.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.UI')
| -rw-r--r-- | Software/Visual_Studio/FSE/Tango.FSE.UI/RemoteJob/DefaultRemoteJobProvider.cs | 2 | ||||
| -rw-r--r-- | Software/Visual_Studio/FSE/Tango.FSE.UI/Tiles/RemoteJob/RemoteJobTile.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.UI/RemoteJob/DefaultRemoteJobProvider.cs b/Software/Visual_Studio/FSE/Tango.FSE.UI/RemoteJob/DefaultRemoteJobProvider.cs index 4c4d5430e..848159e0e 100644 --- a/Software/Visual_Studio/FSE/Tango.FSE.UI/RemoteJob/DefaultRemoteJobProvider.cs +++ b/Software/Visual_Studio/FSE/Tango.FSE.UI/RemoteJob/DefaultRemoteJobProvider.cs @@ -89,7 +89,7 @@ namespace Tango.FSE.UI.RemoteJob if (stage == RemoteJobStage.Started && !IsRemoteJobRunning) { - _handler = new JobHandler(() => { }, response.Job.ToObservable(), null, response.ProcessParameters.ToObservable(), JobHandlerModes.SettingUp); + _handler = new JobHandler(() => { }, response.Job.ToObservable(), null, response.ProcessParameters.ToObservable(), JobHandlerModes.SettingUp, MachineProvider.MachineOperator.MachineType); IsRemoteJobRunning = true; RemoteJobStarted?.Invoke(this, new RemoteJobStartedEventArgs() diff --git a/Software/Visual_Studio/FSE/Tango.FSE.UI/Tiles/RemoteJob/RemoteJobTile.cs b/Software/Visual_Studio/FSE/Tango.FSE.UI/Tiles/RemoteJob/RemoteJobTile.cs index 650818c22..682c8bfe5 100644 --- a/Software/Visual_Studio/FSE/Tango.FSE.UI/Tiles/RemoteJob/RemoteJobTile.cs +++ b/Software/Visual_Studio/FSE/Tango.FSE.UI/Tiles/RemoteJob/RemoteJobTile.cs @@ -67,7 +67,7 @@ namespace Tango.FSE.UI.Tiles.RemoteJob Job.AddSolidSegment(Color.FromRgb(70, 70, 70), 5); Job.AddSolidSegment(Colors.Gray, 5); - Handler = new JobHandler(() => { }, Job, null, new ProcessParametersTable() { DyeingSpeed = 50 }, JobHandlerModes.SettingUp); + Handler = new JobHandler(() => { }, Job, null, new ProcessParametersTable() { DyeingSpeed = 50 }, JobHandlerModes.SettingUp, MachineProvider.MachineOperator.MachineType); Handler.RaiseStatusReceived(new PMR.Printing.JobStatus() { Message = "Ready", |
