mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
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:
parent
6eb75e1a9a
commit
fbbb609fe9
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user