From 4e0f061e05b9a9a2e8e85e5174d333e1c4f8f1d2 Mon Sep 17 00:00:00 2001 From: Justin Swanson Date: Sat, 23 Nov 2019 18:40:18 -0600 Subject: [PATCH] Bugfix for download path re-filling itself undesirably --- Wabbajack/View Models/Compilers/MO2CompilerVM.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Wabbajack/View Models/Compilers/MO2CompilerVM.cs b/Wabbajack/View Models/Compilers/MO2CompilerVM.cs index f0776b22..36d18ed4 100644 --- a/Wabbajack/View Models/Compilers/MO2CompilerVM.cs +++ b/Wabbajack/View Models/Compilers/MO2CompilerVM.cs @@ -182,6 +182,8 @@ namespace Wabbajack .FilterSwitch( this.WhenAny(x => x.DownloadLocation.Exists) .Invert()) + // A skip is needed to ignore the initial signal when the FilterSwitch turns on + .Skip(1) .Subscribe(_ => { DownloadLocation.TargetPath = MO2Compiler.GetTypicalDownloadsFolder(Mo2Folder);