Fix T56756: Pivot Point update issue(minor issue).

This commit is contained in:
Bastien Montagne 2018-09-19 11:41:16 +02:00
parent d053508916
commit f9f34fb9ab
Notes: blender-bot 2023-02-14 10:29:30 +01:00
Referenced by issue #56756, Pivot Point update issue(minor issue)
1 changed files with 1 additions and 1 deletions

View File

@ -2316,7 +2316,7 @@ static void rna_def_tool_settings(BlenderRNA *brna)
RNA_def_property_enum_sdna(prop, NULL, "transform_pivot_point");
RNA_def_property_enum_items(prop, rna_enum_transform_pivot_items_full);
RNA_def_property_ui_text(prop, "Pivot Point", "Pivot center for rotation/scaling");
RNA_def_property_update(prop, NC_SCENE, NULL);
RNA_def_property_update(prop, NC_SCENE | ND_TOOLSETTINGS, NULL);
prop = RNA_def_property(srna, "use_transform_pivot_point_align", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "transform_flag", SCE_XFORM_AXIS_ALIGN);