mirror of https://gitlab.com/basile.b/dexed.git
fix for the linux version, hint textcolor
This commit is contained in:
parent
d4e63e4fd9
commit
d70409bcb9
|
@ -407,11 +407,13 @@ begin
|
||||||
if fCallTipWin = nil then begin
|
if fCallTipWin = nil then begin
|
||||||
fCallTipWin := TCEEditorHintWindow.Create(self);
|
fCallTipWin := TCEEditorHintWindow.Create(self);
|
||||||
fCallTipWin.Color := clInfoBk + $01010100;
|
fCallTipWin.Color := clInfoBk + $01010100;
|
||||||
|
fCallTipWin.Font.Color:= clInfoText;
|
||||||
fCallTipWin.OnClick:= @hintWinClick;
|
fCallTipWin.OnClick:= @hintWinClick;
|
||||||
end;
|
end;
|
||||||
if fDDocWin = nil then begin
|
if fDDocWin = nil then begin
|
||||||
fDDocWin := TCEEditorHintWindow.Create(self);
|
fDDocWin := TCEEditorHintWindow.Create(self);
|
||||||
fDDocWin.Color := clInfoBk + $01010100;
|
fDDocWin.Color := clInfoBk + $01010100;
|
||||||
|
fDDocWin.Font.Color:= clInfoText;
|
||||||
fDDocWin.OnClick:= @hintWinClick;
|
fDDocWin.OnClick:= @hintWinClick;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Reference in New Issue