Merge branch 'fix-applist' into 'master'

Fix application list loads slowly when RyuLDN is enabled

See merge request [ryubing/ryujinx!191](https://git.ryujinx.app/ryubing/ryujinx/-/merge_requests/191)
merge-requests/191/merge
Coxxs 2025-10-24 10:27:54 -05:00
commit e84f9ac7c1
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);