fix for the linux version, hint textcolor

This commit is contained in:
Basile Burg 2015-03-08 22:01:04 +01:00
parent d4e63e4fd9
commit d70409bcb9
1 changed files with 2 additions and 0 deletions

View File

@ -407,11 +407,13 @@ begin
if fCallTipWin = nil then begin
fCallTipWin := TCEEditorHintWindow.Create(self);
fCallTipWin.Color := clInfoBk + $01010100;
fCallTipWin.Font.Color:= clInfoText;
fCallTipWin.OnClick:= @hintWinClick;
end;
if fDDocWin = nil then begin
fDDocWin := TCEEditorHintWindow.Create(self);
fDDocWin.Color := clInfoBk + $01010100;
fDDocWin.Font.Color:= clInfoText;
fDDocWin.OnClick:= @hintWinClick;
end;
end;