mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 00:02:50 +02:00
IDE, EditorOpts: fix default color for multicaret
git-svn-id: trunk@58666 -
This commit is contained in:
parent
7573ca687b
commit
23c3367033
@ -6644,9 +6644,9 @@ begin
|
||||
TIDESynEditor(aSynEdit).CaretColor := Attri.Foreground;
|
||||
|
||||
col := Attri.Background;
|
||||
if (c = clNone) or (c = clDefault) then
|
||||
c := $606060;
|
||||
TIDESynEditor(aSynEdit).MultiCaret.Color := c;
|
||||
if (col = clNone) or (col = clDefault) then
|
||||
col := $606060;
|
||||
TIDESynEditor(aSynEdit).MultiCaret.Color := col;
|
||||
end;
|
||||
end;
|
||||
SetMarkupColorByClass(ahaHighlightWord, TSynEditMarkupHighlightAllCaret);
|
||||
|
Loading…
Reference in New Issue
Block a user