Removed undesired offloading

Normally I'd have this background threading to keep the GUI thread from being blocked.  But in this case, it blocks the window from opening/shifting and displaying a black empty screen in the meantime
This commit is contained in:
Justin Swanson 2019-10-31 19:00:18 -05:00
parent 6eb75e1a9a
commit fbbb609fe9

View File

@ -1,4 +1,4 @@
using DynamicData;
using DynamicData;
using DynamicData.Binding;
using ReactiveUI;
using System;
@ -62,7 +62,6 @@ namespace Wabbajack
// Wire mode to drive the active pane
this._ActivePane = this.WhenAny(x => x.Mode)
.ObserveOn(RxApp.MainThreadScheduler)
.Select<RunMode, ViewModel>(m =>
{
switch (m)