aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs b/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs
index 1b4dd59cd..337b903b8 100644
--- a/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs
+++ b/Software/Visual_Studio/Tango.Integration/Printing/ProcessParametersTable.cs
@@ -8,21 +8,21 @@ namespace Tango.Integration.Observables
{
public partial class ProcessParametersTable
{
- public event EventHandler DyeingSpeedChanged;
+ public event EventHandler DyeingSpeedMinInkUptakeChanged;
protected override void RaisePropertyChanged(string propName)
{
base.RaisePropertyChanged(propName);
- if (propName == nameof(DyeingSpeed))
+ if (propName == nameof(DyeingSpeed) || propName == nameof(MinInkUptake))
{
- OnDyeingSpeedChanged();
+ OnDyeingSpeedMinInkUptakeChanged();
}
}
- protected virtual void OnDyeingSpeedChanged()
+ protected virtual void OnDyeingSpeedMinInkUptakeChanged()
{
- DyeingSpeedChanged?.Invoke(this, new EventArgs());
+ DyeingSpeedMinInkUptakeChanged?.Invoke(this, new EventArgs());
}
}
}