Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed Caption of last -Next button in Windows InstallationWizard to -Install button #48537

Merged
4 changes: 4 additions & 0 deletions contrib/windows/build-installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,15 @@ begin
end;
end;


Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

procedure CurPageChanged(CurPageID: Integer);
begin
case CurPageID of
wpWelcome: WizardForm.Color := WizardForm.WelcomePage.Color;
wpFinished: WizardForm.Color := WizardForm.FinishedPage.Color;
AbhaySingh004 marked this conversation as resolved.
Show resolved Hide resolved

;change button text from "next" to "install" when ReadyPage is disabled.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
;change button text from "next" to "install" when ReadyPage is disabled.
// change button text from "next" to "install" when ReadyPage is disabled.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank You So much @inkydragon for helping me out with this.
I committed the changes you suggested, is it alright now?

wpSelectTasks: WizardForm.NextButton.Caption := SetupMessage(msgButtonInstall);
else
WizardForm.Color := WizardForm.InnerPage.Color;
end;
Expand Down