aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-01-14 03:13:03 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-01-14 03:13:03 +0200
commit7e5c182530e76de80d5e9727e714e0e1a85a9f78 (patch)
tree7573937f57b50a50cede0ce0ab9e3760dd911935 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs
parentee06dfb9a880388e03c9716c821a54f300c19a67 (diff)
downloadTango-7e5c182530e76de80d5e9727e714e0e1a85a9f78.tar.gz
Tango-7e5c182530e76de80d5e9727e714e0e1a85a9f78.zip
Added "Volume" to color space selection on job creation PPC.
FSE: Reopen bug report when reporting failed.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobsViewVM.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobsViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobsViewVM.cs
index afbce995d..a39720a39 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobsViewVM.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobsViewVM.cs
@@ -418,7 +418,7 @@ namespace Tango.PPC.Jobs.ViewModels
JobCreationViewVM vm = new JobCreationViewVM(
Settings.SupportedJobTypes.Count > 0 ? Settings.SupportedJobTypes : Enum.GetValues(typeof(JobTypes)).Cast<JobTypes>().ToList(),
- Settings.SupportedColorSpaces.Count > 0 ? Settings.SupportedColorSpaces : Enum.GetValues(typeof(ColorSpaces)).Cast<ColorSpaces>().Where(x => x.IsUserSpace() || (ApplicationManager.IsInTechnicianMode && x == ColorSpaces.Volume)).ToList()
+ Enum.GetValues(typeof(ColorSpaces)).Cast<ColorSpaces>().Where(x => x != ColorSpaces.CMYK).ToList()
);
if (_catalogs.Count == 0)