View Single Post
  #506  
Old 21-01-2019, 02:55
Schabik Schabik is offline
Registered User
 
Join Date: Dec 2008
Location: Somewhere in Poland
Posts: 152
Thanks: 17
Thanked 35 Times in 32 Posts
Schabik is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
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);
Reply With Quote
The Following User Says Thank You to Schabik For This Useful Post:
KaktoR (21-01-2019)