mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-10 22:19:19 +02:00
Merged revision(s) 43486 #310fc7893e from trunk:
SourceEditor: added nil check for top-info ........ git-svn-id: branches/fixes_1_2@43517 -
This commit is contained in:
parent
47f777f294
commit
4cc4ba42fe
@ -1361,7 +1361,7 @@ var
|
||||
NodeFoldType: TPascalCodeFoldBlockType;
|
||||
List: TLazSynEditNestedFoldsList;
|
||||
begin
|
||||
if (not FShowTopInfo) or (not HandleAllocated) then exit;
|
||||
if (not FShowTopInfo) or (not HandleAllocated) or (TextView.HighLighter = nil) then exit;
|
||||
if FSrcSynCaretChangedLock or not(TextView.HighLighter is TSynPasSyn) then exit;
|
||||
|
||||
FSrcSynCaretChangedLock := True;
|
||||
|
Loading…
Reference in New Issue
Block a user