mirror of https://gitlab.com/basile.b/dexed.git
fix, color selector problem when using dark themes
This commit is contained in:
parent
9b58fe161e
commit
0c5932e0cf
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue