aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/Ui/ViewModels/MainWindowViewModel.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2022-07-29 00:41:34 +0200
committerGitHub <noreply@github.com>2022-07-29 00:41:34 +0200
commit46c8129bf57a3df3e0a2db27e6611ca4210614be (patch)
tree94bc946a119fb1a48f554536a4cc7e25bed45620 /Ryujinx.Ava/Ui/ViewModels/MainWindowViewModel.cs
parent8cfec5de4bde7087734beb2f7203f0d930e1b2d8 (diff)
Avalonia: Another Cleanup (#3494)1.1.197
* Avalonia: Another Cleanup This PR is a cleanup to the avalonia code recently added: - Some XAML file are autoformatted like a previous PR. - Dlc is renamed to DownloadableContent (Locale exclude). - DownloadableContentManagerWindow is a bit improved (Fixes #3491). - Some nits here and there. * Fix GTK * Remove AttachDebugDevTools * Fix last warning * Fix JSON fields
Diffstat (limited to 'Ryujinx.Ava/Ui/ViewModels/MainWindowViewModel.cs')
-rw-r--r--Ryujinx.Ava/Ui/ViewModels/MainWindowViewModel.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Ava/Ui/ViewModels/MainWindowViewModel.cs b/Ryujinx.Ava/Ui/ViewModels/MainWindowViewModel.cs
index 7e6452f9..bd9242e7 100644
--- a/Ryujinx.Ava/Ui/ViewModels/MainWindowViewModel.cs
+++ b/Ryujinx.Ava/Ui/ViewModels/MainWindowViewModel.cs
@@ -1261,15 +1261,15 @@ namespace Ryujinx.Ava.Ui.ViewModels
}
}
- public async void OpenDlcManager()
+ public async void OpenDownloadableContentManager()
{
var selection = SelectedApplication;
if (selection != null)
{
- DlcManagerWindow dlcManager = new(_owner.VirtualFileSystem, ulong.Parse(selection.TitleId, NumberStyles.HexNumber), selection.TitleName);
+ DownloadableContentManagerWindow downloadableContentManager = new(_owner.VirtualFileSystem, ulong.Parse(selection.TitleId, NumberStyles.HexNumber), selection.TitleName);
- await dlcManager.ShowDialog(_owner);
+ await downloadableContentManager.ShowDialog(_owner);
}
}