mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Bugfix for download path re-filling itself undesirably
This commit is contained in:
parent
df62c2ff8c
commit
4e0f061e05
@ -182,6 +182,8 @@ namespace Wabbajack
|
|||||||
.FilterSwitch(
|
.FilterSwitch(
|
||||||
this.WhenAny(x => x.DownloadLocation.Exists)
|
this.WhenAny(x => x.DownloadLocation.Exists)
|
||||||
.Invert())
|
.Invert())
|
||||||
|
// A skip is needed to ignore the initial signal when the FilterSwitch turns on
|
||||||
|
.Skip(1)
|
||||||
.Subscribe(_ =>
|
.Subscribe(_ =>
|
||||||
{
|
{
|
||||||
DownloadLocation.TargetPath = MO2Compiler.GetTypicalDownloadsFolder(Mo2Folder);
|
DownloadLocation.TargetPath = MO2Compiler.GetTypicalDownloadsFolder(Mo2Folder);
|
||||||
|
Loading…
Reference in New Issue
Block a user