Fixed the color of the folder separators.

This commit is contained in:
Lars Brubaker 2015-07-06 14:55:54 -07:00
parent 8a76be3cd9
commit ae49d4b09e
2 changed files with 5 additions and 1 deletions

View file

@ -306,6 +306,10 @@ namespace MatterHackers.MatterControl.DataStorage
}
return providerPath;
}
public bool ReadOnly { get; set; }
public bool Protected { get; set; }
}
public class PrintItemCollection : Entity

View file

@ -288,7 +288,7 @@ namespace MatterHackers.MatterControl.PrintLibrary
{
if (!first)
{
GuiWidget separator = new TextWidget(">");
GuiWidget separator = new TextWidget(">", textColor: ActiveTheme.Instance.PrimaryTextColor);
separator.VAnchor = VAnchor.ParentCenter;
separator.Margin = new BorderDouble(3, 0);
breadCrumbDisplayHolder.AddChild(separator);