From ad313de5a89da33defed44ba8bf72aaf47e51315 Mon Sep 17 00:00:00 2001 From: erri120 Date: Tue, 15 Oct 2019 13:29:20 +0200 Subject: [PATCH] One line fix to stop WJ from being in installer mode the whole time --- Wabbajack/UI/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wabbajack/UI/MainWindow.xaml.cs b/Wabbajack/UI/MainWindow.xaml.cs index 1b0c54e6..b3e64c51 100644 --- a/Wabbajack/UI/MainWindow.xaml.cs +++ b/Wabbajack/UI/MainWindow.xaml.cs @@ -22,7 +22,7 @@ namespace Wabbajack InitializeComponent(); - var context = new AppState(RunMode.Install); + var context = new AppState(mode); context.LogMsg($"Wabbajack Build - {ThisAssembly.Git.Sha}"); SetupHandlers(context); DataContext = context;