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