Made the gcode warning checkbox work
Made the terminal view show correctly when printing.
This commit is contained in:
parent
7216823c7a
commit
5dff18c421
2 changed files with 13 additions and 10 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue