diff --git a/DataStorage/Models.cs b/DataStorage/Models.cs index 69f6558f5..407accafc 100644 --- a/DataStorage/Models.cs +++ b/DataStorage/Models.cs @@ -306,6 +306,10 @@ namespace MatterHackers.MatterControl.DataStorage } return providerPath; } + + public bool ReadOnly { get; set; } + + public bool Protected { get; set; } } public class PrintItemCollection : Entity diff --git a/Library/PrintLibraryWidget.cs b/Library/PrintLibraryWidget.cs index e1da2cc96..39ae6325c 100644 --- a/Library/PrintLibraryWidget.cs +++ b/Library/PrintLibraryWidget.cs @@ -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);