Call the event correctly

This commit is contained in:
Lars Brubaker 2017-10-10 16:48:27 -07:00
parent c1aed47756
commit e737466184

View file

@ -1308,7 +1308,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication
FoundStringEventArgs foundStringEventArgs = e as FoundStringEventArgs;
if (foundStringEventArgs != null)
{
ErrorReported?.Invoke(null, foundStringEventArgs);
ErrorReported.CallEvents(null, foundStringEventArgs);
}
}
}