mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Lowered CPU display throttling to 50ms
This commit is contained in:
parent
6962b4873c
commit
bebd898964
@ -158,7 +158,7 @@ namespace Wabbajack
|
||||
return ret;
|
||||
})
|
||||
.ToObservableChangeSet(x => x.Status.ID)
|
||||
.Batch(TimeSpan.FromMilliseconds(250), RxApp.TaskpoolScheduler)
|
||||
.Batch(TimeSpan.FromMilliseconds(50), RxApp.TaskpoolScheduler)
|
||||
.EnsureUniqueChanges()
|
||||
.Filter(i => i.Status.IsWorking && i.Status.ID != WorkQueue.UnassignedCpuId)
|
||||
.ObserveOn(RxApp.MainThreadScheduler)
|
||||
|
@ -301,7 +301,7 @@ namespace Wabbajack
|
||||
return ret;
|
||||
})
|
||||
.ToObservableChangeSet(x => x.Status.ID)
|
||||
.Batch(TimeSpan.FromMilliseconds(250), RxApp.TaskpoolScheduler)
|
||||
.Batch(TimeSpan.FromMilliseconds(50), RxApp.TaskpoolScheduler)
|
||||
.EnsureUniqueChanges()
|
||||
.Filter(i => i.Status.IsWorking && i.Status.ID != WorkQueue.UnassignedCpuId)
|
||||
.ObserveOn(RxApp.MainThreadScheduler)
|
||||
|
Loading…
Reference in New Issue
Block a user