2 point leveling work
fixed a bug with macros being sent during printing.
Put the home reading into the 3 point leveling wizard
This commit is contained in:
larsbrubaker 2014-06-12 16:51:22 -07:00
parent 7e21b2dc3e
commit 95a703d371
6 changed files with 162 additions and 31 deletions

View file

@ -77,15 +77,10 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
newStartGCode.Append(ReplaceMacroValues(base.MappedValue));
bool first = true;
foreach (string line in PostStartGCode())
{
if (!first)
{
newStartGCode.Append("\n");
}
newStartGCode.Append("\n");
newStartGCode.Append(line);
first = false;
}
if (replaceCRs)