Fixed slideshow starting before installation

This commit is contained in:
erri120 2019-10-09 18:05:33 +02:00
parent 55cac48f7f
commit 63f243dd6d
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135

View File

@ -310,16 +310,16 @@ namespace Wabbajack
set
{
RaiseAndSetIfChanged(ref _enableSlideShow, value);
if (!_enableSlideShow)
if(slideshowThread.IsAlive)
{
if (slideshowThread.IsAlive)
if (!_enableSlideShow)
{
ApplyModlistProperties();
}
}
else
{
UpdateSlideShowItem(false);
else
{
UpdateSlideShowItem(false);
}
}
}
}