mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 00:39:44 +02:00
SynEdit: fix folded view, missing assign to result. (random gutter errors with wrapped text)
This commit is contained in:
parent
5eded0d07e
commit
d121ba841e
@ -863,7 +863,7 @@ end;
|
||||
function TLazSynDisplayFold.ViewToTextIndex(AViewIndex: TLineIdx): TLineIdx;
|
||||
begin
|
||||
Result := FFoldView.InternViewToTextIndex(AViewIndex);
|
||||
inherited ViewToTextIndex(Result)
|
||||
Result := inherited ViewToTextIndex(Result)
|
||||
end;
|
||||
|
||||
function TLazSynDisplayFold.ViewToTextIndexEx(AViewIndex: TLineIdx; out
|
||||
|
Loading…
Reference in New Issue
Block a user