aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2025-03-17 17:13:19 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2025-03-17 17:13:19 +0200
commite22c6c134455f7b2423215f7d7c6a0e707c65c7c (patch)
tree4e07f516a679965defe7b7178b579d8b3e33c7dd /Software/Visual_Studio/Tango.BL
parentcb872d2cbcc20fe456b4e2ca8633c803bd104de7 (diff)
parentad89c52f42dd38dcdc332d2e1059b49858e0b9dd (diff)
downloadTango-e22c6c134455f7b2423215f7d7c6a0e707c65c7c.tar.gz
Tango-e22c6c134455f7b2423215f7d7c6a0e707c65c7c.zip
Merged Buzzer Branch To Software !!!
Diffstat (limited to 'Software/Visual_Studio/Tango.BL')
-rw-r--r--Software/Visual_Studio/Tango.BL/Entities/BrushStopBase.cs6
-rw-r--r--Software/Visual_Studio/Tango.BL/Entities/Job.cs6
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 d748405cd..ba38d429c 100644
--- a/Software/Visual_Studio/Tango.BL/Entities/Job.cs
+++ b/Software/Visual_Studio/Tango.BL/Entities/Job.cs
@@ -864,8 +864,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,
}
},
};