mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 01:28:17 +02:00
Compare commits
5 Commits
02d434a788
...
54f8aff8bb
Author | SHA1 | Date | |
---|---|---|---|
![]() |
54f8aff8bb | ||
![]() |
d88e3444dd | ||
![]() |
d070dd6b88 | ||
![]() |
b3ce2c3b9b | ||
![]() |
e0cc3cca3e |
@ -233,7 +233,7 @@ begin
|
||||
rgWriteSettingsFile.Caption := lisCnfGenWriteSettings;
|
||||
rgWriteSettingsFile.Items[0] := lisCnfGenAlways;
|
||||
rgWriteSettingsFile.Items[1] := lisCnfGenFail;
|
||||
//rgWriteSettingsFile.Items[2] := lisCnfGenNever;
|
||||
rgWriteSettingsFile.Items[2] := lisCnfGenNever;
|
||||
rgShowParseTree.Caption := lisCnfGenShowParseTree;
|
||||
rgShowParseTree.Items[0] := lisCnfGenAlways;
|
||||
rgShowParseTree.Items[1] := lisCnfGenOnParseError;
|
||||
|
@ -1434,11 +1434,10 @@ const
|
||||
);
|
||||
begin
|
||||
Result := TWSControlClass(WidgetSetClass).GetDefaultColor(Self, DefaultColorType);
|
||||
if (Result = clDefault) then
|
||||
if ParentColor and Assigned(Parent) then
|
||||
Result := Parent.GetDefaultColor(DefaultColorType)
|
||||
if (Self.Color = clDefault) and ParentColor and Assigned(Parent) then
|
||||
Result := Parent.GetDefaultColor(DefaultColorType) // recursion
|
||||
else
|
||||
Result := DefColors[DefaultColorType];
|
||||
if Result = clDefault then Result := DefColors[DefaultColorType]; // backstop
|
||||
end;
|
||||
|
||||
function TControl.GetColorResolvingParent: TColor;
|
||||
|
@ -81,6 +81,7 @@ begin
|
||||
Parent := Form;
|
||||
ShowBevel := False;
|
||||
ShowButtons := [pbOK, pbCancel];
|
||||
Color:=Parent.GetDefaultColor(dctBrush); // fix for wrong background colour
|
||||
Align := alTop;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user