Merge branch 'master' into xeyes

This commit is contained in:
Evan Husted
2025-01-29 02:48:51 -06:00
committed by GitHub
45 changed files with 416 additions and 195 deletions

View File

@@ -9,7 +9,7 @@ namespace Ryujinx.Ava.UI.Models
{
private bool _isEnabled = false;
public ObservableCollection<CheatNode> SubNodes { get; } = [];
public string CleanName => Name[1..^7];
public string CleanName => Name.Length > 0 ? Name[1..^7] : Name;
public string BuildIdKey => $"{BuildId}-{Name}";
public bool IsRootNode { get; }
public string Name { get; }