NSFW slides are disabled by default

This commit is contained in:
erri120 2019-10-11 19:34:22 +02:00
parent 775354b4d9
commit 0c51422be6
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135

View File

@ -308,7 +308,7 @@ namespace Wabbajack
private string _SplashScreenSummary;
public string SplashScreenSummary { get => _SplashScreenSummary; set => this.RaiseAndSetIfChanged(ref _SplashScreenSummary, value); }
private bool _splashShowNSFW = true;
private bool _splashShowNSFW = false;
public bool SplashShowNSFW { get => _splashShowNSFW; set => this.RaiseAndSetIfChanged(ref _splashShowNSFW, value); }
private readonly Thread slideshowThread = null;
private bool _enableSlideShow = true;