Fix application list loads slowly when RyuLDN is enabled (ryubing/ryujinx!191)

See merge request ryubing/ryujinx!191
This commit is contained in:
Coxxs 2025-10-24 10:29:33 -05:00 committed by LotP
parent 5ced2bf764
commit 6fd67cdcb7

View File

@ -176,7 +176,8 @@ namespace Ryujinx.Ava.UI.ViewModels
.Sort(GetComparer())
.OnItemAdded(_ => OnPropertyChanged(nameof(AppsObservableList)))
.OnItemRemoved(_ => OnPropertyChanged(nameof(AppsObservableList)))
.Bind(out _appsObservableList);
.Bind(out _appsObservableList)
.Subscribe();
_rendererWaitEvent = new AutoResetEvent(false);