From ae49d4b09e7b056ba60730c99cd7d4027c354615 Mon Sep 17 00:00:00 2001 From: Lars Brubaker Date: Mon, 6 Jul 2015 14:55:54 -0700 Subject: [PATCH] Fixed the color of the folder separators. --- DataStorage/Models.cs | 4 ++++ Library/PrintLibraryWidget.cs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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);