mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 04:39:22 +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;
|
FAutoHideHintTimer.Enabled := False;
|
||||||
if AutoStartCompletionBoxTimer<>nil then
|
if AutoStartCompletionBoxTimer<>nil then
|
||||||
AutoStartCompletionBoxTimer.Enabled:=false;
|
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;
|
FManager.ActiveEditor.FCodeCompletionState.State := ccsReady;
|
||||||
if FAutoShown then
|
if FAutoShown then
|
||||||
HideHint;
|
HideHint;
|
||||||
|
Loading…
Reference in New Issue
Block a user