diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2024-12-05 06:04:18 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2024-12-05 06:04:18 +0200 |
| commit | 065e754c221e69b7c12b72c92a0d6168623449d4 (patch) | |
| tree | 9d7f1338a8267c4311bdc6a67ee2a466b6ce9d9c /Software/Visual_Studio/PPC/Modules | |
| parent | 6145633410ecac8d9847dfb4272a5ee11325c65f (diff) | |
| download | Tango-065e754c221e69b7c12b72c92a0d6168623449d4.tar.gz Tango-065e754c221e69b7c12b72c92a0d6168623449d4.zip | |
Fixed issues with missing c/m/y/k.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules')
3 files changed, 10 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/BrushStopModel.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/BrushStopModel.cs index 7f8c7d6b5..0ad143685 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/BrushStopModel.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/BrushStopModel.cs @@ -579,7 +579,7 @@ namespace Tango.PPC.Jobs.Models if (liquidVolume.Volume > 0 && liquidVolume.Volume < min) { LiquidVolumeBelowMinLimit = true; - LiquidVolumeBelowMinLimitmessage = $"{liquidVolume.IdsPack.LiquidType.Name} Cyan should be > {min.ToString("N3")}"; + LiquidVolumeBelowMinLimitmessage = $"{liquidVolume.IdsPack.LiquidType.Name} should be > {min.ToString("N3")}"; return LiquidVolumeBelowMinLimit; } } diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs index ed855d7b0..7f145c1e3 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/ViewModels/MainViewVM.cs @@ -313,6 +313,8 @@ namespace Tango.PPC.MachineSettings.ViewModels get { return SelectedIdleTime.Minutes != Common.PowerSavingModes.Never; } } + public ColorConversionSettings ColorConversionSettings { get; set; } + #endregion #region Commands @@ -348,6 +350,8 @@ namespace Tango.PPC.MachineSettings.ViewModels new PowerDownTime() { Minutes = Common.PowerSavingModes.Maximum }, new PowerDownTime() { Minutes = Common.PowerSavingModes.Never }, }; + + ColorConversionSettings = SettingsManager.Default.GetOrCreate<ColorConversionSettings>(); } private void Discard() diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/Views/MainView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/Views/MainView.xaml index 5a08c5cd1..537d354fd 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/Views/MainView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.MachineSettings/Views/MainView.xaml @@ -513,6 +513,11 @@ <touch:TouchNumericTextBox Minimum="0" Maximum="10" KeyboardContainer="{Binding ElementName=Container}" Value="{Binding Settings.FineTuningMinLimitdL}" Margin="0 0 100 0" DockPanel.Dock="Right" HorizontalAlignment="Right" Width="90" HasDecimalPoint="True" ></touch:TouchNumericTextBox> </DockPanel> + <DockPanel Margin="0 20 0 0" TextElement.FontSize="{StaticResource TangoDefaultFontSize}"> + <TextBlock VerticalAlignment="Center">Force Process Parameters Index</TextBlock> + <touch:TouchTextBox KeyboardContainer="{Binding ElementName=Container}" Text="{Binding ColorConversionSettings.ForceProcessParametersTableIndex}" Margin="0 0 100 0" DockPanel.Dock="Right" HorizontalAlignment="Right" Width="90"></touch:TouchTextBox> + </DockPanel> + <DockPanel Margin="0 20 0 10"> <touch:TouchIcon VerticalAlignment="Top" Icon="InformationOutline" Foreground="{StaticResource TangoGrayTextBrush}"></touch:TouchIcon> <TextBlock Margin="10 0 0 0" VerticalAlignment="Top" TextWrapping="Wrap" FontSize="{StaticResource TangoSmallFontSize}" Foreground="{StaticResource TangoGrayTextBrush}"> |
