SynEdit: re-enable markup in lfm

git-svn-id: trunk@52180 -
This commit is contained in:
martin 2016-04-12 23:01:29 +00:00
parent 77a7561f6e
commit 8b3aed5ba5

View File

@ -262,8 +262,10 @@ function TSynLFMSyn.GetFoldConfigInstance(Index: Integer): TSynCustomFoldConfig;
begin
Result := inherited GetFoldConfigInstance(Index);
Result.Enabled := True;
Result.SupportedModes := [fmFold, fmMarkup, fmOutline];
Result.Modes := [fmFold, fmMarkup, fmOutline];
if TLfmCodeFoldBlockType(Index) in [cfbtLfmObject, cfbtLfmList, cfbtLfmItem] then begin
Result.SupportedModes := Result.SupportedModes + [fmMarkup];
Result.Modes := Result.Modes + [fmMarkup];
end;
end;
constructor TSynLFMSyn.Create(AOwner: TComponent);