Skip to content

Commit 2c65551

Browse files
committed
Adapt to InnoSetup v6.6.0
The signature of the `CreateCustomForm()` function changed. See also jrsoftware/issrc#573. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent ccafd95 commit 2c65551

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

installer/install.iss

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3813,11 +3813,9 @@ var
38133813
begin
38143814
Result:=True;
38153815
3816-
Form:=CreateCustomForm;
3816+
Form:=CreateCustomForm(ScaleX(500), ScaleY(256), False, False);
38173817
try
38183818
Form.Caption:='Git Uninstall: Removing in-use files';
3819-
Form.ClientWidth:=ScaleX(500);
3820-
Form.ClientHeight:=ScaleY(256);
38213819
38223820
Info:=TLabel.Create(Form);
38233821
with Info do begin

0 commit comments

Comments
 (0)