mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 08:27:11 +02:00
UI: [ci skip] Make cheat window larger by default
This commit is contained in:
parent
7085bafa60
commit
502ce98b3a
3 changed files with 6 additions and 3 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue