mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 04:59:08 +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;
|
TIDESynEditor(aSynEdit).CaretColor := Attri.Foreground;
|
||||||
|
|
||||||
col := Attri.Background;
|
col := Attri.Background;
|
||||||
if (c = clNone) or (c = clDefault) then
|
if (col = clNone) or (col = clDefault) then
|
||||||
c := $606060;
|
col := $606060;
|
||||||
TIDESynEditor(aSynEdit).MultiCaret.Color := c;
|
TIDESynEditor(aSynEdit).MultiCaret.Color := col;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
SetMarkupColorByClass(ahaHighlightWord, TSynEditMarkupHighlightAllCaret);
|
SetMarkupColorByClass(ahaHighlightWord, TSynEditMarkupHighlightAllCaret);
|
||||||
|
Loading…
Reference in New Issue
Block a user