Removed .Top() call in log display systems

The virtualization systems invoked by the Top() call seem to have a bug in them when handling duplicate entries (at least on the list-side).  Removing it until it can be investigated further and fixed.
This commit is contained in:
Justin Swanson 2019-11-26 20:34:22 -06:00
parent 23a2f5e50f
commit 5c62038341

View File

@ -46,7 +46,6 @@ namespace Wabbajack
.Where(l => l.Count > 0)
.ObserveOn(RxApp.MainThreadScheduler)
.FlattenBufferResult()
.Top(5000)
.Bind(Log)
.Subscribe()
.DisposeWith(CompositeDisposable);