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-08-27 17:48:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-08-27 17:56:08 +0300
commitddff9d0ea68b4c92be2fc515a4ec6a17b3696aa0 (patch)
tree0bf133537dac8f69339905ee364db47fa992a3e1 /source/blender/editors/space_view3d/view3d_manipulator_lamp.c
parentca9801bd427ce2e76a992b62d476859efcc14547 (diff)
Manipulator: support operator per-part
A single manipulator could only assign a single operator to each part. Now each part can have it's own. Also modify 2D selection callback, 2D started at 1, 3D at 0. Now use -1 for unset value, start both at 0.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_manipulator_lamp.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_manipulator_lamp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_manipulator_lamp.c b/source/blender/editors/space_view3d/view3d_manipulator_lamp.c
index a1646325e45..5d0940493ee 100644
--- a/source/blender/editors/space_view3d/view3d_manipulator_lamp.c
+++ b/source/blender/editors/space_view3d/view3d_manipulator_lamp.c
@@ -267,7 +267,7 @@ static void WIDGETGROUP_lamp_target_setup(const bContext *UNUSED(C), wmManipulat
RNA_enum_set(mpr->ptr, "draw_options",
ED_MANIPULATOR_GRAB_DRAW_FLAG_FILL | ED_MANIPULATOR_GRAB_DRAW_FLAG_ALIGN_VIEW);
- WM_manipulator_set_operator(mpr, ot, NULL);
+ WM_manipulator_operator_set(mpr, 0, ot, NULL);
}
static void WIDGETGROUP_lamp_target_draw_prepare(const bContext *C, wmManipulatorGroup *mgroup)