From d90d6f8674030f84d44419d743f171190b786932 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Tue, 28 Feb 2023 17:46:26 -0500 Subject: [PATCH] Fix #105259: Copy & paste boolean custom property as driver doesn't work A copy and paste mistake in ef68a37e5d55e17adf4c. --- source/blender/makesrna/intern/rna_ID.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c index dd4077e499c..29a3ed594d1 100644 --- a/source/blender/makesrna/intern/rna_ID.c +++ b/source/blender/makesrna/intern/rna_ID.c @@ -1489,7 +1489,6 @@ static void rna_def_ID_properties(BlenderRNA *brna) /* IDP_BOOLEAN */ prop = RNA_def_property(srna, "bool", PROP_BOOLEAN, PROP_NONE); RNA_def_property_flag(prop, PROP_IDPROPERTY); - RNA_def_property_array(prop, 1); prop = RNA_def_property(srna, "bool_array", PROP_BOOLEAN, PROP_NONE); RNA_def_property_flag(prop, PROP_IDPROPERTY);