Fix typo
This commit is contained in:
parent
45f69b2fb7
commit
819c0b0b25
3 changed files with 4 additions and 4 deletions
|
|
@ -17,7 +17,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
|
|||
DoubleBuffer = true;
|
||||
}
|
||||
|
||||
public bool DynamiclyScaleRange { get; set; } = true;
|
||||
public bool DynamicallyScaleRange { get; set; } = true;
|
||||
|
||||
Color _goalColor = Color.Yellow;
|
||||
public Color GoalColor
|
||||
|
|
@ -57,7 +57,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
|
|||
|
||||
public void AddData(double NewData)
|
||||
{
|
||||
if (DynamiclyScaleRange)
|
||||
if (DynamicallyScaleRange)
|
||||
{
|
||||
MaxValue = System.Math.Max(MaxValue, NewData);
|
||||
MinValue = System.Math.Min(MinValue, NewData);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue