mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-26 13:08:39 +02:00
Avoid firing on pure number
This commit is contained in:
parent
bcd4138db4
commit
cda109f74b
@ -11656,7 +11656,8 @@ procedure TSourceEditorManager.SourceCompletionTimer(Sender: TObject);
|
|||||||
Exit;
|
Exit;
|
||||||
|
|
||||||
if (CodeAttribute = SYNS_XML_AttrComment) or
|
if (CodeAttribute = SYNS_XML_AttrComment) or
|
||||||
(CodeAttribute = SYNS_XML_AttrString)
|
(CodeAttribute = SYNS_XML_AttrString) or
|
||||||
|
(CodeAttribute = SYNS_XML_AttrNumber)
|
||||||
then
|
then
|
||||||
Exit;
|
Exit;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user