From f7b8f6d9d43f82134c8d81cbff71a42b3609b4c5 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 19 Feb 2025 16:09:57 +0200 Subject: PPC Job Progress Redesign & Gradients. --- Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs | 6 ++++++ Software/Visual_Studio/Tango.BL/Entities/Job.cs | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'Software/Visual_Studio/Tango.BL') diff --git a/Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs b/Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs index 864393461..fa903c02a 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs @@ -1656,6 +1656,12 @@ namespace Tango.BL.Entities } } + public void SetColorSpaceSilent(ColorSpace space) + { + _colorspace = space; + _colorspaceguid = space.Guid; + } + protected Segment _segment; /// diff --git a/Software/Visual_Studio/Tango.BL/Entities/Job.cs b/Software/Visual_Studio/Tango.BL/Entities/Job.cs index 4e115f5e8..cc1c73fe1 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/Job.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/Job.cs @@ -855,8 +855,12 @@ namespace Tango.BL.Entities { new BrushStop() { - ColorSpace = new ColorSpace(), + ColorSpace = new ColorSpace() { Name = "Volume" }, Color = System.Windows.Media.Colors.White, + Red = 255, + Green = 255, + Blue = 255, + L = 100, } }, }; -- cgit v1.3.1