Rename member to match behavior

This commit is contained in:
John Lewin 2017-09-28 21:52:35 -07:00
parent f9c9a6201a
commit 278351dc88
3 changed files with 3 additions and 3 deletions

View file

@ -157,7 +157,7 @@ namespace MatterHackers.MatterControl
if (thumbnail != null)
{
string cachePath = ApplicationController.Instance.CachePath(item);
string cachePath = ApplicationController.Instance.ThumbnailCachePath(item);
AggContext.ImageIO.SaveImageData(cachePath, thumbnail);
imageCallback(thumbnail);

View file

@ -224,7 +224,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
internal ImageBuffer LoadCachedImage(ListViewItem listViewItem)
{
string cachePath = ApplicationController.Instance.CachePath(listViewItem.Model);
string cachePath = ApplicationController.Instance.ThumbnailCachePath(listViewItem.Model);
bool isCached = !string.IsNullOrEmpty(cachePath) && File.Exists(cachePath);
if (isCached)