diff options
| author | Oren Pinkas <Oren.Pinkas@twine-s.com> | 2022-10-11 11:44:23 +0300 |
|---|---|---|
| committer | Oren Pinkas <Oren.Pinkas@twine-s.com> | 2022-10-11 11:44:23 +0300 |
| commit | be1ec00e63ca4f3a40e2e53c65b7751dac66b618 (patch) | |
| tree | 0741a87d135632a6472bfb9306d0bd974f267b7e /Software/Visual_Studio/MachineStudio/Modules | |
| parent | d951af658ae40a8e1a50e0fc6b2dddc134c77f14 (diff) | |
| parent | 85b307bcb943872c94b771ab0f0ea2c08c2a5af4 (diff) | |
| download | Tango-be1ec00e63ca4f3a40e2e53c65b7751dac66b618.tar.gz Tango-be1ec00e63ca4f3a40e2e53c65b7751dac66b618.zip | |
lubtable is read successfully.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules')
2 files changed, 3 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/ColorConversionViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/ColorConversionViewVM.cs index 0882d43e0..ca3c3e322 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/ColorConversionViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/ViewModels/ColorConversionViewVM.cs @@ -245,6 +245,7 @@ namespace Tango.MachineStudio.RML.ViewModels input.ThreadB = RML.WhitePointB; input.UseLightInks = RML.UseLightInks; + input.UseLubricantTransform = RML.UseLubricantTransform; input.VMax = RML.VMax; //Validate calibration data @@ -383,6 +384,7 @@ namespace Tango.MachineStudio.RML.ViewModels input.ThreadB = RML.WhitePointB; input.UseLightInks = RML.UseLightInks; + input.UseLubricantTransform = RML.UseLubricantTransform; input.VMax = RML.VMax; foreach (var vm in LiquidsCalibrationData.Where(x => x.LiquidType.HasPigment)) diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Views/RmlView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Views/RmlView.xaml index 7e3b4fa4a..08af47ef4 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Views/RmlView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.RML/Views/RmlView.xaml @@ -267,6 +267,7 @@ <CheckBox ToolTip="Use the color conversion engine to generate gradients" IsChecked="{Binding ActiveRML.UseColorLibGradients}" HorizontalAlignment="Left" Margin="0 20 0 0">Enable Gradient Generation</CheckBox> <CheckBox ToolTip="Use light inks when converting colors to liquid volumes" IsChecked="{Binding ActiveRML.UseLightInks}" HorizontalAlignment="Left" Margin="0 10 0 0">Use Light Inks</CheckBox> + <CheckBox ToolTip="Use lubricant transformation when converting to liquid volumes" IsChecked="{Binding ActiveRML.UseLubricantTransform}" HorizontalAlignment="Left" Margin="0 10 0 0">Use Lubricant Transform</CheckBox> <DockPanel Margin="0 10 0 0"> <TextBlock VerticalAlignment="Center" Text="V-Max:" ></TextBlock> |
