From 85c5c5531e990b12fed60c428b70f887c1bd0c81 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 Jun 2017 17:06:24 +1000 Subject: Manipulator: edit_properties -> target_properties Naming was too confusing between properties of a manipulator and properties it edits. --- source/blender/editors/mesh/editmesh_bisect.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/mesh/editmesh_bisect.c') diff --git a/source/blender/editors/mesh/editmesh_bisect.c b/source/blender/editors/mesh/editmesh_bisect.c index 34644bb7fd6..4d301c009ee 100644 --- a/source/blender/editors/mesh/editmesh_bisect.c +++ b/source/blender/editors/mesh/editmesh_bisect.c @@ -628,7 +628,7 @@ static void manipulator_mesh_bisect_setup(const bContext *C, wmManipulatorGroup /* Setup property callbacks */ { - WM_manipulator_property_def_func( + WM_manipulator_target_property_def_func( man->translate_z, "offset", &(const struct wmManipulatorPropertyFnParams) { .value_get_fn = manipulator_bisect_prop_depth_get, @@ -637,7 +637,7 @@ static void manipulator_mesh_bisect_setup(const bContext *C, wmManipulatorGroup .user_data = NULL, }); - WM_manipulator_property_def_func( + WM_manipulator_target_property_def_func( man->translate_c, "offset", &(const struct wmManipulatorPropertyFnParams) { .value_get_fn = manipulator_bisect_prop_translate_get, @@ -646,7 +646,7 @@ static void manipulator_mesh_bisect_setup(const bContext *C, wmManipulatorGroup .user_data = NULL, }); - WM_manipulator_property_def_func( + WM_manipulator_target_property_def_func( man->rotate_c, "offset", &(const struct wmManipulatorPropertyFnParams) { .value_get_fn = manipulator_bisect_prop_angle_get, -- cgit v1.2.3