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.
merge-requests/191/head
Coxxs 2025-10-24 23:03:08 +08:00 committed by LotP
parent 5ced2bf764
commit 53d3c6b6b6
1 changed files with 2 additions and 1 deletions

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);