misc: chore: fix some compile warnings

This commit is contained in:
Evan Husted 2025-01-09 20:23:26 -06:00
parent bdd890cf6f
commit 27993b789f
4 changed files with 9 additions and 7 deletions

View file

@ -741,7 +741,10 @@ namespace Ryujinx.Ava.UI.ViewModels
Applications.ToObservableChangeSet()
.Filter(Filter)
.Sort(GetComparer())
.Bind(out _appsObservableList).AsObservableList();
#pragma warning disable MVVMTK0034
.Bind(out _appsObservableList)
#pragma warning enable MVVMTK0034
.AsObservableList();
OnPropertyChanged(nameof(AppsObservableList));
}