aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs b/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs
index c29ec8319..e128a5949 100644
--- a/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs
+++ b/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs
@@ -411,7 +411,7 @@ namespace Tango.Integration.JobRuns
{ LiquidTypes.Magenta, q => run.MagentaQuantity = update ? run.MagentaQuantity + q : q },
{ LiquidTypes.Yellow, q => run.YellowQuantity = update ? run.YellowQuantity + q : q },
{ LiquidTypes.Black, q => run.BlackQuantity = update ? run.BlackQuantity + q : q },
- { LiquidTypes.TransparentInk, q => run.TransparentQuantity = update ? run.TransparentQuantity + q : q },
+ { LiquidTypes.Transparent, q => run.TransparentQuantity = update ? run.TransparentQuantity + q : q },
{ LiquidTypes.Lubricant, q => run.LubricantQuantity = update ? run.LubricantQuantity + q : q },
{ LiquidTypes.Cleaner, q => run.CleanerQuantity = update ? run.CleanerQuantity + q : q },
{ LiquidTypes.LightCyan, q => run.LightCyanQuantity = update ? run.LightCyanQuantity + q : q },
@@ -424,7 +424,8 @@ namespace Tango.Integration.JobRuns
{ LiquidTypes.Rubine, q => run.RubineQuantity = update ? run.RubineQuantity + q : q },
{ LiquidTypes.LightRubine, q => run.LightRubineQuantity = update ? run.LightRubineQuantity + q : q },
{ LiquidTypes.Navy, q => run.NavyQuantity = update ? run.NavyQuantity + q : q },
- { LiquidTypes.Violet, q => run.VioletQuantity = update ? run.VioletQuantity + q : q }
+ { LiquidTypes.Violet, q => run.VioletQuantity = update ? run.VioletQuantity + q : q },
+ { LiquidTypes.TWCyan, q => run.TwCyanQuantity = update ? run.VioletQuantity + q : q }
};
foreach (var liquidType in setters.Keys)