diff options
| author | Roy Ben Shabat <roy.mail.net@gmail.com> | 2025-09-08 17:28:51 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <roy.mail.net@gmail.com> | 2025-09-08 17:28:51 +0300 |
| commit | 987e4992d01a0bc84170498c40dad0621542f46c (patch) | |
| tree | 4b593db7f1e22ea34cc8dd8a7285903c43846188 /Software/Visual_Studio/Tango.BL | |
| parent | f272d741e2c3ec820b1a39e7797ac46986ab62c9 (diff) | |
| download | Tango-987e4992d01a0bc84170498c40dad0621542f46c.tar.gz Tango-987e4992d01a0bc84170498c40dad0621542f46c.zip | |
New Extra inks work + changed Transparent Ink to Transparent.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/JobRun.cs | 2 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/JobRun.cs b/Software/Visual_Studio/Tango.BL/Entities/JobRun.cs index 73be1c9d8..f2a182e84 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/JobRun.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/JobRun.cs @@ -99,7 +99,7 @@ namespace Tango.BL.Entities _liquidQuantitiesFast.Add(new JobRunLiquidQuantity() { LiquidType = LiquidTypes.Magenta, Quantity = MagentaQuantity }); _liquidQuantitiesFast.Add(new JobRunLiquidQuantity() { LiquidType = LiquidTypes.Yellow, Quantity = YellowQuantity }); _liquidQuantitiesFast.Add(new JobRunLiquidQuantity() { LiquidType = LiquidTypes.Black, Quantity = BlackQuantity }); - _liquidQuantitiesFast.Add(new JobRunLiquidQuantity() { LiquidType = LiquidTypes.TransparentInk, Quantity = TransparentQuantity }); + _liquidQuantitiesFast.Add(new JobRunLiquidQuantity() { LiquidType = LiquidTypes.Transparent, Quantity = TransparentQuantity }); _liquidQuantitiesFast.Add(new JobRunLiquidQuantity() { LiquidType = LiquidTypes.Lubricant, Quantity = LubricantQuantity }); _liquidQuantitiesFast.Add(new JobRunLiquidQuantity() { LiquidType = LiquidTypes.Cleaner, Quantity = CleanerQuantity }); _liquidQuantitiesFast.Add(new JobRunLiquidQuantity() { LiquidType = LiquidTypes.LightCyan, Quantity = LightCyanQuantity }); diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs index d44726994..36dbbc823 100644 --- a/Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs +++ b/Software/Visual_Studio/Tango.BL/Enumerations/LiquidTypes.cs @@ -56,10 +56,10 @@ namespace Tango.BL.Enumerations HDOrange = 330, /// <summary> - /// (Transparent Ink) + /// (Transparent) /// </summary> - [Description("Transparent Ink")] - TransparentInk = 4, + [Description("Transparent")] + Transparent = 4, /// <summary> /// (TW Transparent Ink) |
