diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-05 17:25:34 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-05 17:25:34 +0200 |
| commit | 9816804779f673d122aef78d9ba969ee2e2f98f5 (patch) | |
| tree | b746f7d04285c665399e5525edb0b993ed8afda1 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs | |
| parent | b3589be05166fdd15692a9a835262d6e04e56bd2 (diff) | |
| download | Tango-9816804779f673d122aef78d9ba969ee2e2f98f5.tar.gz Tango-9816804779f673d122aef78d9ba969ee2e2f98f5.zip | |
Dropped IsTransparent from PPC jobs.
Add full support for IsWhite on PPC and integration.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs index 1b80eed35..f07c20aa9 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs @@ -671,7 +671,7 @@ namespace Tango.PPC.Jobs.ViewModels { return Job != null && Job.Validate(_db) && - !Job.Segments.SelectMany(x => x.BrushStops).Where(x => !x.IsTransparent).ToList().Exists(x => x.IsOutOfGamut); + !Job.Segments.SelectMany(x => x.BrushStops).Where(x => !x.IsTransparent && !x.IsWhite).ToList().Exists(x => x.IsOutOfGamut); } #endregion |
