diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-01-28 20:40:01 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-01-28 20:40:01 +0200 |
| commit | 60dae81ccd16a1bd4f5af3b2c5b561e201ec97da (patch) | |
| tree | 7af1718390052075b8444ffe72a4c9dce384cc63 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance | |
| parent | a4bd79a77bba87b8644e73903f020de94e1c7ade (diff) | |
| download | Tango-60dae81ccd16a1bd4f5af3b2c5b561e201ec97da.tar.gz Tango-60dae81ccd16a1bd4f5af3b2c5b561e201ec97da.zip | |
Added support for light inks cleaner 10' ids pack !
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Dialogs/CleanerDispensingViewVM.cs | 11 |
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) { |
