IDE, EditorOptions: add colors for Overview-Gutter / fix modified/save indicator colors (swapped)

git-svn-id: trunk@61096 -
This commit is contained in:
martin 2019-04-30 23:15:53 +00:00
parent c12c24dc34
commit 9a58bacd0a

View File

@ -6793,8 +6793,8 @@ begin
if OGutterProv is TSynGutterLOvProviderModifiedLines then begin
Attri := GetUsedAttr(ahaModifiedLine);
if Attri <> nil then begin
OGutterProv.Color := Attri.Foreground;
TSynGutterLOvProviderModifiedLines(OGutterProv).ColorSaved := Attri.FrameColor;
OGutterProv.Color := Attri.FrameColor;
TSynGutterLOvProviderModifiedLines(OGutterProv).ColorSaved := Attri.Foreground;
end;
end
else