aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-01-28 20:40:01 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-01-28 20:40:01 +0200
commit60dae81ccd16a1bd4f5af3b2c5b561e201ec97da (patch)
tree7af1718390052075b8444ffe72a4c9dce384cc63 /Software/Visual_Studio/PPC
parenta4bd79a77bba87b8644e73903f020de94e1c7ade (diff)
downloadTango-60dae81ccd16a1bd4f5af3b2c5b561e201ec97da.tar.gz
Tango-60dae81ccd16a1bd4f5af3b2c5b561e201ec97da.zip
Added support for light inks cleaner 10' ids pack !
Diffstat (limited to 'Software/Visual_Studio/PPC')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Dialogs/CleanerDispensingViewVM.cs11
1 files changed, 1 insertions, 10 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Dialogs/CleanerDispensingViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Dialogs/CleanerDispensingViewVM.cs
index d1a02a940..e37be417f 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Dialogs/CleanerDispensingViewVM.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Dialogs/CleanerDispensingViewVM.cs
@@ -78,16 +78,7 @@ namespace Tango.PPC.Maintenance.Dialogs
Status = "Dispensing cleaner liquid...";
- IdsPack cleanerPack = null;
-
- if (MachineProvider.Machine.LightInksInstalled)
- {
- cleanerPack = MachineProvider.Machine.Configuration.NoneEmptyIdsPacks.FirstOrDefault(x => x.LiquidType.Type == BL.Enumerations.LiquidTypes.TransparentInk);
- }
- else
- {
- cleanerPack = MachineProvider.Machine.Configuration.NoneEmptyIdsPacks.FirstOrDefault(x => x.LiquidType.Type == BL.Enumerations.LiquidTypes.Cleaner);
- }
+ var cleanerPack = MachineProvider.Machine.Configuration.NoneEmptyIdsPacks.FirstOrDefault(x => x.LiquidType.Type == BL.Enumerations.LiquidTypes.Cleaner);
if (cleanerPack == null)
{