From f9836fed7294694cc944d9bece303681429465c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20J=2E=20Est=C3=A9banez?= Date: Fri, 2 Jun 2023 22:03:21 +0200 Subject: [PATCH] Use right type in the binding of DocCache::classes --- editor/editor_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 17aa763983f..e709371ec68 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -65,7 +65,7 @@ protected: ClassDB::bind_method(D_METHOD("get_classes"), &DocCache::get_classes); ADD_PROPERTY(PropertyInfo(Variant::STRING, "version_hash"), "set_version_hash", "get_version_hash"); - ADD_PROPERTY(PropertyInfo(Variant::DICTIONARY, "classes"), "set_classes", "get_classes"); + ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "classes"), "set_classes", "get_classes"); } public: