Quote:
Originally Posted by KaktoR
I will see to change the text color for dark themes.
----
Lokalizacja docelowa:
Search for
Code:
with WizardForm.SelectDirLabel do begin
Caption := AppNameOverride(msgSelectDirLabel3);
Left := FolderImage.Left + 42;
Top := ScaleY(0);
Width := ScaleX(488);
Height := ScaleY(45);
WordWrap := True;
end;
and change height to 42 (should be enough)
Will be changed in next version
|
Thanks KaktoR

That worked for me
As for LicencePage and InfoBefore page, how about changing the background color?
Ive changed the bg color to lightgrey and it looks like this:
2019-01-21_11h53_47.png
What do You think about this solution?
Just added to
Code:
with WizardForm.InfoBeforeMemo do begin
Left := ScaleX(0);
Top := ScaleY(50);
Width := ScaleX(520);
Height := ScaleY(210);
end;
this line:
Code:
Color := TColor($d3d3d3);