From b347d588f23f0c6598de1227b8e703cdf666cfdf Mon Sep 17 00:00:00 2001 From: John Lewin Date: Thu, 21 Jun 2018 21:48:53 -0700 Subject: [PATCH] Limit to private scope until need returns --- Library/ContentProviders/MeshContentProvider.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/ContentProviders/MeshContentProvider.cs b/Library/ContentProviders/MeshContentProvider.cs index 31acd8739..c02c87a1e 100644 --- a/Library/ContentProviders/MeshContentProvider.cs +++ b/Library/ContentProviders/MeshContentProvider.cs @@ -130,7 +130,8 @@ namespace MatterHackers.MatterControl return GetThumbnail(object3D, thumbnailId, width, height); } - public ImageBuffer GetThumbnail(IObject3D item, string thumbnailId, int width, int height) + // Limit to private scope until need returns + private ImageBuffer GetThumbnail(IObject3D item, string thumbnailId, int width, int height) { if (item == null) {