Fix GCode regression, restore required base call

- Issue MatterHackers/MCCentral#3912
Can't delete or change custom G-code in profile
This commit is contained in:
John Lewin 2018-07-30 16:42:47 -07:00
parent d6b76db2e4
commit 65d8e8c91c

View file

@ -70,6 +70,8 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
{
editWidget.Text = this.Value.Replace("\\n", "\n");
editWidget.ActualTextEditWidget.Height = Math.Min(editWidget.ActualTextEditWidget.Printer.LocalBounds.Height, 500);
base.OnValueChanged(fieldChangedEventArgs);
}
}
}