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>2018-10-16 14:08:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-16 14:09:27 +0300
commit3f3eae675aa83007e641c9a3849189251cae83b0 (patch)
treefbd8279d2299cc74a44cb15798b4a4f37b7e3d4a /source/blender/editors/space_view3d/view3d_gizmo_navigate.c
parent48034f0eb3f731e726d2f651a2a6bad736c58ca6 (diff)
Cleanup: naming
'mp' was a reference to 'manipulator'
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_gizmo_navigate.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_gizmo_navigate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/view3d_gizmo_navigate.c b/source/blender/editors/space_view3d/view3d_gizmo_navigate.c
index 63c15c7fe5d..d17f0df0c20 100644
--- a/source/blender/editors/space_view3d/view3d_gizmo_navigate.c
+++ b/source/blender/editors/space_view3d/view3d_gizmo_navigate.c
@@ -192,8 +192,8 @@ static void WIDGETGROUP_navigate_setup(const bContext *UNUSED(C), wmGizmoGroup *
int gz_ids[] = {MPR_MOVE, MPR_ROTATE, MPR_ZOOM};
for (int i = 0; i < ARRAY_SIZE(gz_ids); i++) {
wmGizmo *gz = navgroup->gz_array[gz_ids[i]];
- wmGizmoOpElem *mpop = WM_gizmo_operator_get(gz, 0);
- RNA_boolean_set(&mpop->ptr, "use_mouse_init", false);
+ wmGizmoOpElem *gzop = WM_gizmo_operator_get(gz, 0);
+ RNA_boolean_set(&gzop->ptr, "use_mouse_init", false);
}
}