Merge branch 'main' into 'main'

fix for TControl.GetDefaultColor never recursing up to parent

See merge request freepascal.org/lazarus/lazarus!452
This commit is contained in:
robert rozee 2025-04-03 21:29:44 +00:00
commit 02d434a788
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -81,6 +81,7 @@ begin
Parent := Form;
ShowBevel := False;
ShowButtons := [pbOK, pbCancel];
Color:=Parent.GetDefaultColor(dctBrush); // fix for wrong background colour
Align := alTop;
end;