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/space_node
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/space_node')
-rw-r--r--source/blender/editors/space_node/node_manipulators.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_node/node_manipulators.c b/source/blender/editors/space_node/node_manipulators.c
index e3f699cabdf..8b4ebd70874 100644
--- a/source/blender/editors/space_node/node_manipulators.c
+++ b/source/blender/editors/space_node/node_manipulators.c
@@ -96,8 +96,8 @@ static void WIDGETGROUP_node_transform_refresh(const bContext *C, wmManipulatorG
SpaceNode *snode = CTX_wm_space_node(C);
PointerRNA nodeptr;
RNA_pointer_create(snode->id, &RNA_SpaceNodeEditor, snode, &nodeptr);
- WM_manipulator_property_def_rna(cage, "offset", &nodeptr, "backdrop_offset", -1);
- WM_manipulator_property_def_rna(cage, "scale", &nodeptr, "backdrop_zoom", -1);
+ WM_manipulator_target_property_def_rna(cage, "offset", &nodeptr, "backdrop_offset", -1);
+ WM_manipulator_target_property_def_rna(cage, "scale", &nodeptr, "backdrop_zoom", -1);
}
else {
WM_manipulator_set_flag(cage, WM_MANIPULATOR_HIDDEN, true);