[Bf-blender-cvs] [c9e33b36de2] blender2.8: Correct copy-paste error manipulator

Campbell Barton noreply at git.blender.org
Mon Jun 26 07:40:40 CEST 2017


Commit: c9e33b36de25d272a9896ad0a85dcc69ee0692ba
Author: Campbell Barton
Date:   Mon Jun 26 15:46:27 2017 +1000
Branches: blender2.8
https://developer.blender.org/rBc9e33b36de25d272a9896ad0a85dcc69ee0692ba

Correct copy-paste error manipulator

===================================================================

M	source/blender/editors/manipulator_library/manipulator_types/arrow3d_manipulator.c

===================================================================

diff --git a/source/blender/editors/manipulator_library/manipulator_types/arrow3d_manipulator.c b/source/blender/editors/manipulator_library/manipulator_types/arrow3d_manipulator.c
index 2e4a34d7c63..e95800f3db1 100644
--- a/source/blender/editors/manipulator_library/manipulator_types/arrow3d_manipulator.c
+++ b/source/blender/editors/manipulator_library/manipulator_types/arrow3d_manipulator.c
@@ -472,10 +472,8 @@ static void MANIPULATOR_WT_arrow_3d(wmManipulatorType *wt)
 		{0, NULL, 0, NULL, NULL}
 	};
 	static EnumPropertyItem rna_enum_draw_options[] = {
-		{ED_MANIPULATOR_DIAL_DRAW_FLAG_CLIP, "CLIP", 0, "Clipped", ""},
-		{ED_MANIPULATOR_DIAL_DRAW_FLAG_FILL, "FILL", 0, "Filled", ""},
-		{ED_MANIPULATOR_DIAL_DRAW_FLAG_ANGLE_MIRROR, "ANGLE_MIRROR", 0, "Angle Mirror", ""},
-		{ED_MANIPULATOR_DIAL_DRAW_FLAG_ANGLE_START_Y, "ANGLE_START_Y", 0, "Angle Start Y", ""},
+		{ED_MANIPULATOR_ARROW_STYLE_INVERTED, "INVERT", 0, "Inverted", ""},
+		{ED_MANIPULATOR_ARROW_STYLE_CONSTRAINED, "CONSTRAIN", 0, "Constrained", ""},
 		{0, NULL, 0, NULL, NULL}
 	};




More information about the Bf-blender-cvs mailing list