From 01a8a6d0a384e59ea7716bfd6ea305f60e7c2dc6 Mon Sep 17 00:00:00 2001 From: John Lewin Date: Wed, 8 Nov 2017 22:57:55 -0800 Subject: [PATCH] Filter should include PrintHistory items - Issue MatterHackers/MCCentral#2213 Print History container is always empty --- Library/Interfaces/LibraryExtensionMethods.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Interfaces/LibraryExtensionMethods.cs b/Library/Interfaces/LibraryExtensionMethods.cs index d4951713c..f02843777 100644 --- a/Library/Interfaces/LibraryExtensionMethods.cs +++ b/Library/Interfaces/LibraryExtensionMethods.cs @@ -49,6 +49,7 @@ namespace MatterHackers.MatterControl.Library { return item is ILibraryContentItem || item is SDCardFileItem + || item is PrintHistoryItem || (item is ILibraryContentStream contentStream && ApplicationController.Instance.Library.IsContentFileType(contentStream.FileName)); }