Don't need to filter these (they are not there)

This commit is contained in:
Lars Brubaker 2016-06-17 12:26:34 -07:00
parent c31695a6c4
commit 6bd273ec47

View file

@ -78,7 +78,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
public override bool MapContains(string key)
{
// Visible items are anything not in hiddenSettings or that does not start with 'MatterControl.'
return !hiddenSettings.Contains(key) && !key.StartsWith("MatterControl.");
return !hiddenSettings.Contains(key);
}
}
}