diff --git a/Library/Providers/FileSystem/FileSystemContainer.cs b/Library/Providers/FileSystem/FileSystemContainer.cs index 69078214c..a55394d47 100644 --- a/Library/Providers/FileSystem/FileSystemContainer.cs +++ b/Library/Providers/FileSystem/FileSystemContainer.cs @@ -55,6 +55,8 @@ namespace MatterHackers.MatterControl.Library this.fullPath = path; this.Name = Path.GetFileName(path); + this.IsProtected = false; + this.ChildContainers = new List(); this.Items = new List(); #if !__ANDROID__ diff --git a/Library/Providers/LibraryContainer.cs b/Library/Providers/LibraryContainer.cs index 44f3e7c1f..b57703589 100644 --- a/Library/Providers/LibraryContainer.cs +++ b/Library/Providers/LibraryContainer.cs @@ -46,7 +46,7 @@ namespace MatterHackers.MatterControl.Library public Type DefaultView { get; protected set; } public List ChildContainers { get; set; } - public bool IsProtected => true; + public bool IsProtected { get; protected set; } = true; public virtual Task GetThumbnail(ILibraryItem item, int width, int height) {