This commit is contained in:
Lars Brubaker 2017-03-09 11:16:19 -08:00
commit a871dd08e8
7 changed files with 18 additions and 31 deletions

View file

@ -85,7 +85,7 @@ namespace MatterHackers.MatterControl
{
if (filterOutput.Checked)
{
textScrollWidget.SetLineStartFilter(new string[] { "<-wait", "<-ok", "->M105", "<-T" });
textScrollWidget.SetLineStartFilter(new string[] { "<-wait", "<-ok", "<-T" });
}
else
{

View file

@ -107,6 +107,7 @@ namespace MatterHackers.MatterControl
foreach (string startFilter in StartLineStringFilters)
{
if (line == null
|| line.Contains("M105")
|| line.Length < 3
|| line.StartsWith(startFilter))
{