mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-12 07:36:59 +00:00
added the ability to hide the help button (basically just for the finish screen, because it has a bigger discord button in the same place) holding shift while opening the setup wizard now opens it in passive mode, aka it will install only what you need. this is mostly for testing and likely will be nuked before this code as a whole is made part of the official emulator, but it might not
13 lines
435 B
C#
13 lines
435 B
C#
using Gommon;
|
|
using Ryujinx.Ava.Common.Locale;
|
|
|
|
namespace Ryujinx.Ava.UI.SetupWizard.Pages
|
|
{
|
|
public class SetupFinishedPageContext() : SetupWizardPageContext(LocaleKeys.SetupWizardFinalPageTitle)
|
|
{
|
|
public override LocaleKeys ActionContent => LocaleKeys.SetupWizardFinalPageAction;
|
|
|
|
// informative step; this implementation is not called.
|
|
public override Result CompleteStep() => Result.Success;
|
|
}
|
|
}
|