diff options
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, } }, }; |
