Include all types in completion

This commit is contained in:
2025-09-14 20:44:36 +02:00
parent 9cca183677
commit 03492972cb
+1 -1
View File
@@ -455,7 +455,7 @@ QStringList ScriptEngine::complete(const QString &line)
while(it.hasNext()) while(it.hasNext())
{ {
it.next(); it.next();
if((it.value().isCallable() || it.value().isObject()) && it.name() != "contructor" && it.name() != "objectNameChanged") if(it.name() != "constructor" && it.name() != "objectNameChanged")
complete.append(var + "." + it.name()); complete.append(var + "." + it.name());
} }
} }