Rename member to match behavior
This commit is contained in:
parent
f9c9a6201a
commit
278351dc88
3 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue