Good settings for Mini

This commit is contained in:
Lars Brubaker 2015-01-21 09:59:37 -08:00
parent 17f792bc6d
commit fdc3842ca7
2 changed files with 76 additions and 45 deletions

View file

@ -26,7 +26,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
string thingToReplace = "{" + "{0}".FormatWith(name) + "}";
gcodeWithMacros = gcodeWithMacros.Replace(thingToReplace, ActiveSliceSettings.Instance.GetActiveValue(name));
}
// do the replacement with [] (square brackets)
// do the replacement with [] (square brackets) Slic3r uses only square brackets
{
string thingToReplace = "[" + "{0}".FormatWith(name) + "]";
gcodeWithMacros = gcodeWithMacros.Replace(thingToReplace, ActiveSliceSettings.Instance.GetActiveValue(name));