diff options
| author | Ac_K <Acoustik666@gmail.com> | 2022-07-29 00:41:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-29 00:41:34 +0200 |
| commit | 46c8129bf57a3df3e0a2db27e6611ca4210614be (patch) | |
| tree | 94bc946a119fb1a48f554536a4cc7e25bed45620 /Ryujinx.Ava/Ui/Controls | |
| parent | 8cfec5de4bde7087734beb2f7203f0d930e1b2d8 (diff) | |
Avalonia: Another Cleanup (#3494)
* 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/Controls')
| -rw-r--r-- | Ryujinx.Ava/Ui/Controls/GameGridView.axaml | 2 | ||||
| -rw-r--r-- | Ryujinx.Ava/Ui/Controls/GameListView.axaml | 2 | ||||
| -rw-r--r-- | Ryujinx.Ava/Ui/Controls/UpdateWaitWindow.axaml.cs | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/Ryujinx.Ava/Ui/Controls/GameGridView.axaml b/Ryujinx.Ava/Ui/Controls/GameGridView.axaml index 431bcf00..bcf38e7a 100644 --- a/Ryujinx.Ava/Ui/Controls/GameGridView.axaml +++ b/Ryujinx.Ava/Ui/Controls/GameGridView.axaml @@ -37,7 +37,7 @@ Header="{locale:Locale GameListContextMenuManageTitleUpdates}" ToolTip.Tip="{locale:Locale GameListContextMenuManageTitleUpdatesToolTip}" /> <MenuItem - Command="{Binding OpenDlcManager}" + Command="{Binding OpenDownloadableContentManager}" Header="{locale:Locale GameListContextMenuManageDlc}" ToolTip.Tip="{locale:Locale GameListContextMenuManageDlcToolTip}" /> <MenuItem diff --git a/Ryujinx.Ava/Ui/Controls/GameListView.axaml b/Ryujinx.Ava/Ui/Controls/GameListView.axaml index 6fe0b162..2c6022bd 100644 --- a/Ryujinx.Ava/Ui/Controls/GameListView.axaml +++ b/Ryujinx.Ava/Ui/Controls/GameListView.axaml @@ -37,7 +37,7 @@ Header="{locale:Locale GameListContextMenuManageTitleUpdates}" ToolTip.Tip="{locale:Locale GameListContextMenuManageTitleUpdatesToolTip}" /> <MenuItem - Command="{Binding OpenDlcManager}" + Command="{Binding OpenDownloadableContentManager}" Header="{locale:Locale GameListContextMenuManageDlc}" ToolTip.Tip="{locale:Locale GameListContextMenuManageDlcToolTip}" /> <MenuItem diff --git a/Ryujinx.Ava/Ui/Controls/UpdateWaitWindow.axaml.cs b/Ryujinx.Ava/Ui/Controls/UpdateWaitWindow.axaml.cs index eff15c7b..19d6f98b 100644 --- a/Ryujinx.Ava/Ui/Controls/UpdateWaitWindow.axaml.cs +++ b/Ryujinx.Ava/Ui/Controls/UpdateWaitWindow.axaml.cs @@ -17,9 +17,6 @@ namespace Ryujinx.Ava.Ui.Controls public UpdateWaitWindow() { InitializeComponent(); -#if DEBUG - this.AttachDevTools(); -#endif } } }
\ No newline at end of file |
