add "overwrite mode" for the setup wizard, basically this just ignores the precondition of having whatever the page configures before showing it.

i.e. if you had keys installed, previously it'd skip right to firmware.

additionally added more customization to the now instance-based NotificationHelper
This commit is contained in:
GreemDev
2025-11-24 20:25:59 -06:00
parent dc2aa837b3
commit 3fe7600382
5 changed files with 15 additions and 15 deletions

View File

@@ -48,7 +48,7 @@ namespace Ryujinx.Ava.UI.SetupWizard
where TControl : RyujinxControl<TViewModel>, new()
where TViewModel : SetupWizardPageContext, new()
{
boundViewModel = new() { Notifications = ownerWizard.NotificationHelper };
boundViewModel = new() { Notifications = ownerWizard.Notification };
return WithContent<TControl>(boundViewModel);
}