move more of the setup wizard logic into the setup wizard itself instead of having some critical logic in a random lambda in MainWindow.axaml.cs

This commit is contained in:
GreemDev 2025-11-22 20:33:28 -06:00
parent 9cd5adafa1
commit 9980cb9c17
5 changed files with 33 additions and 31 deletions

View file

@ -22,7 +22,7 @@ namespace Ryujinx.Ava.Systems.SetupWizard
.Show();
}
protected SetupWizardPageBuilder NextPage()
protected SetupWizardPageBuilder NextPage()
=> new(presenter);
}
}