mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 19:16:16 +02:00
Fix crash, introduced in r63316 #000ea7c493 "auto complete on typing". Issue #37184
git-svn-id: trunk@63322 -
This commit is contained in:
parent
00aa0ed701
commit
79ba6dbb06
@ -2142,7 +2142,9 @@ begin
|
||||
FAutoHideHintTimer.Enabled := False;
|
||||
if AutoStartCompletionBoxTimer<>nil then
|
||||
AutoStartCompletionBoxTimer.Enabled:=false;
|
||||
if FManager.ActiveEditor.FCodeCompletionState.State in [ccsDot, ccsOnTyping] then
|
||||
if (FManager.ActiveEditor <> nil) and
|
||||
(FManager.ActiveEditor.FCodeCompletionState.State in [ccsDot, ccsOnTyping])
|
||||
then
|
||||
FManager.ActiveEditor.FCodeCompletionState.State := ccsReady;
|
||||
if FAutoShown then
|
||||
HideHint;
|
||||
|
Loading…
Reference in New Issue
Block a user