From e49e9289f088022e3dc0b23edd1d2a8bcec70dab Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 6 Jan 2010 22:38:51 +0000 Subject: [PATCH] - leg_quadruped_generic missing imports - move global pivot in the UI of userprefs since others are closer related --- release/scripts/modules/rigify/leg_quadruped_generic.py | 2 +- release/scripts/ui/space_userpref.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/release/scripts/modules/rigify/leg_quadruped_generic.py b/release/scripts/modules/rigify/leg_quadruped_generic.py index f63c7c4ddd5..36481d91676 100644 --- a/release/scripts/modules/rigify/leg_quadruped_generic.py +++ b/release/scripts/modules/rigify/leg_quadruped_generic.py @@ -20,7 +20,7 @@ import bpy from rigify import RigifyError -from rigify_utils import bone_class_instance, copy_bone_simple, add_pole_target_bone +from rigify_utils import bone_class_instance, copy_bone_simple, add_pole_target_bone, get_base_name, get_side_name from Mathutils import Vector METARIG_NAMES = "hips", "thigh", "shin", "foot", "toe" diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py index 571abb39dab..46ebe3070ef 100644 --- a/release/scripts/ui/space_userpref.py +++ b/release/scripts/ui/space_userpref.py @@ -183,9 +183,9 @@ class USERPREF_PT_interface(bpy.types.Panel): col = row.column() col.label(text="View Manipulation:") col.prop(view, "auto_depth") - col.prop(view, "global_pivot") col.prop(view, "zoom_to_mouse") col.prop(view, "rotate_around_selection") + col.prop(view, "global_pivot") col.separator()