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:
authorJulian Eisel <eiseljulian@gmail.com>2017-03-02 15:39:01 +0300
committerJulian Eisel <eiseljulian@gmail.com>2017-03-02 15:39:01 +0300
commita78717a72d22e0dfd4a6a0cd47b1fc4ef9169a60 (patch)
tree8948ef32d640717ba202cdc1078ec64260f11588 /source/blender
parente7dc46d278a74fc41124bf09aa78c9f3ed33e959 (diff)
Fix duplicated 'Accurate' property for manipulator keymap item
Is already added through Transform_Properties
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_view3d/view3d_edit.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c
index 04670f5a843..5816519e5b2 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))