mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 00:49:29 +02:00
IDE: identifier completion window: fix system colors
git-svn-id: trunk@57554 -
This commit is contained in:
parent
796629c37a
commit
584fd52fcd
@ -2405,11 +2405,11 @@ begin
|
||||
end;
|
||||
Font.Style:=[];
|
||||
end;
|
||||
Colors.BackgroundColor := FActiveEditBackgroundColor;
|
||||
Colors.BackgroundSelectedColor := FActiveEditBackgroundSelectedColor;
|
||||
Colors.TextColor := FActiveEditTextColor;
|
||||
Colors.TextSelectedColor := FActiveEditTextSelectedColor;
|
||||
Colors.TextHighLightColor := FActiveEditTextHighLightColor;
|
||||
Colors.BackgroundColor := ColorToRGB(FActiveEditBackgroundColor);
|
||||
Colors.BackgroundSelectedColor := ColorToRGB(FActiveEditBackgroundSelectedColor);
|
||||
Colors.TextColor := ColorToRGB(FActiveEditTextColor);
|
||||
Colors.TextSelectedColor := ColorToRGB(FActiveEditTextSelectedColor);
|
||||
Colors.TextHighLightColor := ColorToRGB(FActiveEditTextHighLightColor);
|
||||
MaxX:=TheForm.ClientWidth;
|
||||
t:=CurrentCompletionType;
|
||||
if Manager.ActiveCompletionPlugin<>nil then
|
||||
|
Loading…
Reference in New Issue
Block a user