[Bf-blender-cvs] [a78717a72d] master: Fix duplicated 'Accurate' property for manipulator keymap item

Julian Eisel noreply at git.blender.org
Thu Mar 2 13:40:19 CET 2017


Commit: a78717a72d22e0dfd4a6a0cd47b1fc4ef9169a60
Author: Julian Eisel
Date:   Thu Mar 2 13:39:01 2017 +0100
Branches: master
https://developer.blender.org/rBa78717a72d22e0dfd4a6a0cd47b1fc4ef9169a60

Fix duplicated 'Accurate' property for manipulator keymap item

Is already added through Transform_Properties

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

M	source/blender/editors/space_view3d/view3d_edit.c

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

diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c
index 04670f5a84..5816519e5b 100644
--- a/source/blender/editors/space_view3d/view3d_edit.c
+++ b/source/blender/editors/space_view3d/view3d_edit.c
@@ -4799,9 +4799,6 @@ void VIEW3D_OT_manipulator(wmOperatorType *ot)
 	prop = RNA_def_boolean(ot->srna, "use_planar_constraint", false, "Planar Constraint", "Limit the transformation to the "
 	                       "two axes that have not been clicked (translate/scale only)");
 	RNA_def_property_flag(prop, PROP_SKIP_SAVE | PROP_HIDDEN);
-
-	prop = RNA_def_boolean(ot->srna, "use_accurate", false, "Accurate", "Use accurate transformation");
-	RNA_def_property_flag(prop, PROP_SKIP_SAVE | PROP_HIDDEN);
 }
 
 static int enable_manipulator_invoke(bContext *C, wmOperator *op, const wmEvent *UNUSED(event))




More information about the Bf-blender-cvs mailing list