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
|
||||
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);
|
||||
|
|
Loading…
Reference in New Issue