Making sure we only select MatterSlice when it is the only engine.

Keeping android building.
This commit is contained in:
Lars Brubaker 2016-07-19 11:31:36 -07:00
parent e9ae8f6e02
commit 445f1560b0
4 changed files with 13 additions and 3 deletions

View file

@ -101,7 +101,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
toggleSwitch.CheckedStateChanged += (sender, e) =>
{
CheckBox thisControl = sender as CheckBox;
ActiveSliceSettings.Instance.SetActiveValue("PublishBedImage", thisControl.Checked ? "1" : "0");
ActiveSliceSettings.Instance.SetValue("PublishBedImage", thisControl.Checked ? "1" : "0");
};
publishImageSwitchContainer.AddChild(toggleSwitch);