1 parent b2a4e09 commit 0a06d84Copy full SHA for 0a06d84
1 file changed
out/heidisql.iss
@@ -147,13 +147,13 @@ begin
147
txt.Parent := WizardForm.FinishedPage;
148
txt.Caption := '{#ProgName} is free software for database workers.'+#13#10+'Keep it alive with a donation:';
149
txt.Left := WizardForm.FinishedLabel.Left;
150
- txt.Top := WizardForm.FinishedLabel.Top + 130;
+ txt.Top := WizardForm.FinishedLabel.Top + WizardForm.FinishedLabel.Height + 80;
151
152
btn := TButton.Create(WizardForm);
153
btn.Parent := WizardForm.FinishedPage;
154
btn.Left := txt.Left;
155
btn.Top := txt.Top + txt.Height + 10;
156
- btn.Width := 140;
+ btn.Width := WizardForm.Width div 2;
157
btn.Height := WizardForm.CancelButton.Height + 10;
158
btn.Caption := 'Donate via Paypal';
159
btn.OnClick := @DonateClick;
0 commit comments