Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-01-06 15:24:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-06 15:27:03 +0300
commit967cf303f32fa5a920c34c934d63e0f3c582b886 (patch)
treea9e3ccc2c03cf00c042a1d9b8f626a50855f3e40 /source/blender/makesrna/intern/rna_curve.c
parentbc3e38ca3a4228b7191e9fec39288c9f37ec53b1 (diff)
Fix T83372: Point.select can be True when unselected
Diffstat (limited to 'source/blender/makesrna/intern/rna_curve.c')
-rw-r--r--source/blender/makesrna/intern/rna_curve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index 93880a09ab4..a46026fd08f 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -872,7 +872,7 @@ static void rna_def_bpoint(BlenderRNA *brna)
/* Boolean values */
prop = RNA_def_property(srna, "select", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "f1", 0);
+ RNA_def_property_boolean_sdna(prop, NULL, "f1", SELECT);
RNA_def_property_ui_text(prop, "Select", "Selection status");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");