From 2af178ee49411a105faf6331fe60ff25567432ac Mon Sep 17 00:00:00 2001 From: Martijn Laan Date: Thu, 11 Jun 2020 14:30:05 +0200 Subject: [PATCH] Fix custom option DPI issue + also set anchors. --- setup.iss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.iss b/setup.iss index 302a7d5..7b744a8 100644 --- a/setup.iss +++ b/setup.iss @@ -175,6 +175,8 @@ begin with CheckBox do begin Top := PreviousControl.Top + PreviousControl.Height + ScaleY(12); Width := Page.SurfaceWidth; + Height := ScaleY(Height); + Anchors := [akLeft, akTop, akRight]; Caption := ACheckCaption; Parent := Page.Surface; end;