Call container.SetThumbnail after meshContentProvider thumnbail gen

- Issue MatterHackers/MCCentral#4502
MCWS not updated after local thumbnail regeneration
This commit is contained in:
John Lewin 2018-11-05 17:27:06 -08:00
parent 47e6ca535e
commit 9472a8ebc3

View file

@ -129,6 +129,11 @@ namespace MatterHackers.MatterControl.CustomWidgets
else
{
this.SetSizedThumbnail(thumbnail);
if (listViewItem.Container is ILibraryWritableContainer writableContainer)
{
writableContainer.SetThumbnail(listViewItem.Model, thumbWidth, thumbHeight, thumbnail);
}
}
}
}