aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2023-08-10 12:21:34 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2023-08-10 12:21:34 +0300
commitba0fa1fa68767b7264803019ade99f5e123a5d1a (patch)
treefdfeee6b0e707bb639c30deae15971775490216e /Software/Visual_Studio/PPC/Modules
parentcea6dbf4dedf06ba95db5e1b6bb63f207de32a41 (diff)
downloadTango-ba0fa1fa68767b7264803019ade99f5e123a5d1a.tar.gz
Tango-ba0fa1fa68767b7264803019ade99f5e123a5d1a.zip
ResumeJob. Bug in Emulator, - the job does not complete properly.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs
index 5738fe8a0..c874e5fc2 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/ViewModels/JobViewVM.cs
@@ -1805,7 +1805,7 @@ namespace Tango.PPC.Jobs.ViewModels
{
if (!e.JobHandler.Status.IsCompleted)
{
- if (e.JobHandler.JobStatus.Progress <= 0) return;
+ if (e.JobHandler.JobStatus.Progress <= e.JobHandler.ProcessParameters.DryerBufferLengthMeters) return;
var model = JobResumeDB.Default.Get(e.Job.Guid);
bool insert = false;