fix, color selector problem when using dark themes

This commit is contained in:
Basile Burg 2022-09-10 19:29:37 +02:00
parent 9b58fe161e
commit 0c5932e0cf
1 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ begin
// set things up and do the work
noFill := CurValue = 'clNone';
if noFill then
Brush.Color := clWindow
Brush.Color := clBackground
else
Brush.Color := StringToColorDef(CurValue,clNone);
Pen.Color := ColorToBorderColor(ColorToRGB(Brush.Color));
@ -167,7 +167,7 @@ begin
ACanvas.Font.Color := clHighlightText;
end
else begin
ACanvas.Brush.Color := clwhite{clWindow};
ACanvas.Brush.Color := clWindow;
ACanvas.Font.Color := clWindowText;
end;
ACanvas.FillRect(rc);