mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-09 20:06:27 +02:00
UI: Added the ability to view Compat information on right click, and on clicking the status itself like the title ID button.
This commit is contained in:
parent
566f3d079a
commit
df9e6e4812
11 changed files with 141 additions and 25 deletions
|
@ -12,6 +12,7 @@ using Ryujinx.Ava.UI.ViewModels;
|
|||
using Ryujinx.Ava.UI.Windows;
|
||||
using Ryujinx.Ava.Utilities;
|
||||
using Ryujinx.Ava.Utilities.AppLibrary;
|
||||
using Ryujinx.Ava.Utilities.Compat;
|
||||
using Ryujinx.Common.Configuration;
|
||||
using Ryujinx.Common.Helper;
|
||||
using Ryujinx.HLE.HOS;
|
||||
|
@ -385,6 +386,12 @@ namespace Ryujinx.Ava.UI.Controls
|
|||
viewModel.SelectedApplication.Icon
|
||||
);
|
||||
}
|
||||
|
||||
public async void OpenApplicationCompatibility_Click(object sender, RoutedEventArgs args)
|
||||
{
|
||||
if (sender is MenuItem { DataContext: MainWindowViewModel { SelectedApplication: not null } viewModel })
|
||||
await CompatibilityList.Show(viewModel.SelectedApplication.IdString);
|
||||
}
|
||||
|
||||
public async void RunApplication_Click(object sender, RoutedEventArgs args)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue