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