Fix application list loads slowly when RyuLDN is enabled

Currently, application list will not show until ApplicationLibrary_LdnGameDataReceived calls ViewModel.RefreshView();, forcing a refresh. This makes application list load slowly when RyuLDN is enabled.
This commit is contained in:
Coxxs 2025-10-24 10:29:33 -05:00 committed by KeatonTheBot
parent e720e4a87b
commit 2993dba583

View file

@ -169,7 +169,8 @@ namespace Ryujinx.Ava.UI.ViewModels
Applications.ToObservableChangeSet()
.Filter(Filter)
.Sort(GetComparer())
.Bind(out _appsObservableList).AsObservableList();
.Bind(out _appsObservableList)
.Subscribe();
_rendererWaitEvent = new AutoResetEvent(false);