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:
authorCampbell Barton <ideasman42@gmail.com>2017-06-21 10:06:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-06-21 10:06:24 +0300
commit85c5c5531e990b12fed60c428b70f887c1bd0c81 (patch)
tree9e73e13edefbb1feea9c4ccab91e1180f98fb8bc /source/blender/editors/mesh/editmesh_extrude.c
parentc3a8b51413b61c7dca787a8a1b327e9f69dd2be3 (diff)
Manipulator: edit_properties -> target_properties
Naming was too confusing between properties of a manipulator and properties it edits.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_extrude.c')
-rw-r--r--source/blender/editors/mesh/editmesh_extrude.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/mesh/editmesh_extrude.c b/source/blender/editors/mesh/editmesh_extrude.c
index cfeff6a65af..32f5dcd5526 100644
--- a/source/blender/editors/mesh/editmesh_extrude.c
+++ b/source/blender/editors/mesh/editmesh_extrude.c
@@ -1090,7 +1090,7 @@ static void manipulator_mesh_spin_setup(const bContext *C, wmManipulatorGroup *m
/* 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_spin_prop_depth_get,
@@ -1099,7 +1099,7 @@ static void manipulator_mesh_spin_setup(const bContext *C, wmManipulatorGroup *m
.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_spin_prop_translate_get,
@@ -1108,7 +1108,7 @@ static void manipulator_mesh_spin_setup(const bContext *C, wmManipulatorGroup *m
.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_spin_prop_axis_angle_get,
@@ -1117,7 +1117,7 @@ static void manipulator_mesh_spin_setup(const bContext *C, wmManipulatorGroup *m
.user_data = NULL,
});
- WM_manipulator_property_def_func(
+ WM_manipulator_target_property_def_func(
man->angle_z, "offset",
&(const struct wmManipulatorPropertyFnParams) {
.value_get_fn = manipulator_spin_prop_angle_get,