From 825b900992909e905416f79c25423278a754450d Mon Sep 17 00:00:00 2001 From: Beyley Thomas Date: Sun, 15 Oct 2023 20:33:50 -0700 Subject: [PATCH] Set PSP setup guide button to open relevant online guide --- Refresher/UI/PSPSetupForm.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Refresher/UI/PSPSetupForm.cs b/Refresher/UI/PSPSetupForm.cs index 774892f..65d8173 100644 --- a/Refresher/UI/PSPSetupForm.cs +++ b/Refresher/UI/PSPSetupForm.cs @@ -81,7 +81,12 @@ public PSPSetupForm() : base("PSP Setup") this.InitializePatcher(); } - + + public override void Guide(object? sender, EventArgs e) + { + this.OpenUrl("https://littlebigrefresh.github.io/Docs/patching/psp"); + } + private void SelectedDriveChange(object? sender, EventArgs e) { this.Patcher!.PSPDrivePath = this._pspDrive.SelectedKey;