svn merge ^/trunk/blender -r42466:42495

This commit is contained in:
Campbell Barton
2011-12-07 18:29:21 +00:00
26 changed files with 212 additions and 147 deletions

View File

@@ -129,8 +129,7 @@ class CLIP_PT_tools_marker(Panel):
if settings.default_tracker == 'KLT':
col.prop(settings, "default_pyramid_levels")
elif settings.default_tracker == 'SAD':
col.prop(settings, "default_correlation_min")
col.prop(settings, "default_correlation_min")
col.separator()
@@ -497,8 +496,7 @@ class CLIP_PT_track_settings(Panel):
if active.tracker == 'KLT':
col.prop(active, "pyramid_levels")
elif active.tracker == 'SAD':
col.prop(active, "correlation_min")
col.prop(active, "correlation_min")
col.separator()
col.prop(active, "frames_limit")

View File

@@ -889,6 +889,8 @@ class USERPREF_PT_input(Panel, InputKeyMapPanel):
sub.label(text="NDOF Device:")
sub.prop(inputs, "ndof_sensitivity", text="NDOF Sensitivity")
col.prop(inputs, "tweak_threshold")
row.separator()
def draw(self, context):

View File

@@ -255,7 +255,7 @@ class VIEW3D_MT_uv_map(Menu):
layout.separator()
layout.operator_context = 'EXEC_DEFAULT'
layout.operator_context = 'EXEC_REGION_WIN'
layout.operator("uv.cube_project")
layout.operator("uv.cylinder_project")
layout.operator("uv.sphere_project")