UI: Skip undo steps when changing properties of the 3d cursor

Differential revision: https://developer.blender.org/D10695
This commit is contained in:
Germano Cavalcante 2021-03-30 16:13:21 -03:00
parent 54d7dea283
commit da1b002c8d
1 changed files with 1 additions and 0 deletions

View File

@ -2685,6 +2685,7 @@ static void rna_def_view3d_cursor(BlenderRNA *brna)
RNA_def_struct_path_func(srna, "rna_View3DCursor_path");
RNA_def_struct_ui_text(srna, "3D Cursor", "");
RNA_def_struct_ui_icon(srna, ICON_CURSOR);
RNA_def_struct_clear_flag(srna, STRUCT_UNDO);
prop = RNA_def_property(srna, "location", PROP_FLOAT, PROP_XYZ_LENGTH);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);