Made the gcode warning checkbox work

Made the terminal view show correctly when printing.
This commit is contained in:
Lars Brubaker 2014-12-31 11:09:57 -08:00
parent 7216823c7a
commit 5dff18c421
2 changed files with 13 additions and 10 deletions

View file

@ -136,7 +136,8 @@ namespace MatterHackers.MatterControl
void CreateFilteredList()
{
visibleLines = new List<string>();
foreach (string line in allSourceLines)
List<string> allSourceLinesTemp = new List<string>(allSourceLines);
foreach (string line in allSourceLinesTemp)
{
ConditionalyAddToVisible(line);
}