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/Tango.PPC.UI/ViewModels | |
| 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/Tango.PPC.UI/ViewModels')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs index afb536c58..ff66130bb 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineStatusViewVM.cs @@ -183,7 +183,6 @@ namespace Tango.PPC.UI.ViewModels OnUpdateCurrentBrush(); - RaisePropertyChangedAuto(); } } } @@ -918,6 +917,8 @@ namespace Tango.PPC.UI.ViewModels { CurrentBrushStop.SetLiquidVolumes(MachineProvider.Machine.Configuration, Job.Rml, MachineProvider.MachineOperator.CurrentProcessParameters); + RaisePropertyChanged(nameof(CurrentBrushStop)); + foreach (var output in LiquidOutputs) { output.Volume = GetVolumeLiquidType(output.LiquidType.Type); |
