Skip to content

Commit b7c2868

Browse files
fix #591 Innosetup display glitch with 'Nelson's website' button.
1 parent a54639a commit b7c2868

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
3636
### Fixed
3737

3838
- [#587](http://github.com/Nelson-numerical-software/nelson/issues/587): implicit cast to string array for horzcat and vertcat operators.
39-
- [#584](http://github.com/Nelson-numerical-software/nelson/issues/584): docker files updated to support C++17 and new libraries.
4039
- [#562](http://github.com/Nelson-numerical-software/nelson/issues/562): `format long` complex do not display expected precision.
4140
- scale factor for integer values did not display as expected.
4241
- [#561](http://github.com/Nelson-numerical-software/nelson/issues/561): `0^0` did not return expected value.
4342
- [#560](http://github.com/Nelson-numerical-software/nelson/issues/560): many warnings fixed (Thanks to new PVS-Studio and cppcheck).
4443
- cmake `WITH_SLICOT`, `WITH_FFTW`, `ENABLE_CLANG_TIDY_FIX` were not documented.
44+
- [#584](http://github.com/Nelson-numerical-software/nelson/issues/584): docker files updated to support C++17 and new libraries.
45+
- [#591](http://github.com/Nelson-numerical-software/nelson/issues/591): Innosetup display glitch with `Nelson's website` button.
4546

4647
## 0.6.1 (2022-01-31)
4748

tools/innosetup/code.iss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ begin
204204

205205
URLLabel.Font.Style := URLLabel.Font.Style + [fsUnderline];
206206
URLLabel.Font.Color := clBlue;
207-
URLLabel.Top := WizardForm.ClientHeight - URLLabel.Height - 15;
208-
URLLabel.Left := ScaleX(20);
207+
URLLabel.Top := WizardForm.ClientHeight - 1;
208+
URLLabel.Left := ScaleX(500);
209209

210210
if not IsSilentMode() then
211211
begin
@@ -225,8 +225,12 @@ begin
225225

226226
License2AcceptedRadio :=
227227
CloneLicenseRadioButton(WizardForm.LicenseAcceptedRadio);
228+
License2AcceptedRadio.Top := License2AcceptedRadio.Top + 77;
229+
228230
License2NotAcceptedRadio :=
229231
CloneLicenseRadioButton(WizardForm.LicenseNotAcceptedRadio);
232+
License2NotAcceptedRadio.Top := License2NotAcceptedRadio.Top + 77;
233+
230234
License2NotAcceptedRadio.Checked := True;
231235
end;
232236
end;

0 commit comments

Comments
 (0)