mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 18:59:06 +02:00
IDE: Identifier completion window: fix none conditions
git-svn-id: trunk@57126 -
This commit is contained in:
parent
b7d9f7292a
commit
05e47debeb
@ -2158,9 +2158,9 @@ Begin
|
||||
FActiveEditBorderColor := SynEditor.MarkupIdentComplWindow.BorderColor;
|
||||
if SynEditor.MarkupIdentComplWindow.WindowColor<>clNone then
|
||||
FActiveEditBackgroundColor := SynEditor.MarkupIdentComplWindow.WindowColor;
|
||||
if SynEditor.MarkupIdentComplWindow.WindowColor<>clNone then
|
||||
if SynEditor.MarkupIdentComplWindow.TextSelectedColor<>clNone then
|
||||
FActiveEditTextSelectedColor := SynEditor.MarkupIdentComplWindow.TextSelectedColor;
|
||||
if SynEditor.MarkupIdentComplWindow.WindowColor<>clNone then
|
||||
if SynEditor.MarkupIdentComplWindow.BackgroundSelectedColor<>clNone then
|
||||
FActiveEditBackgroundSelectedColor := SynEditor.MarkupIdentComplWindow.BackgroundSelectedColor;
|
||||
if SynEditor.MarkupIdentComplWindow.HighlightColor<>clNone then
|
||||
FActiveEditTextHighLightColor := SynEditor.MarkupIdentComplWindow.HighlightColor;
|
||||
|
Loading…
Reference in New Issue
Block a user