diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2025-02-19 16:09:57 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2025-02-19 16:09:57 +0200 |
| commit | f7b8f6d9d43f82134c8d81cbff71a42b3609b4c5 (patch) | |
| tree | 228bdb4239ada049a1933fc9997ee24db0e0943b /Software/Visual_Studio/Tango.BL | |
| parent | 54d607cb361d40eccf2d31da2305423360cc4b09 (diff) | |
| download | Tango-f7b8f6d9d43f82134c8d81cbff71a42b3609b4c5.tar.gz Tango-f7b8f6d9d43f82134c8d81cbff71a42b3609b4c5.zip | |
PPC Job Progress Redesign & Gradients.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs | 6 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/Job.cs | 6 |
2 files changed, 11 insertions, 1 deletions
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; /// <summary> 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, } }, }; |
