UI Scripts Bugfixes:

* Toolbar shows "Loopcut and Slide" instead of "Loopcut" now
* Follow Path "Offset" option was broken by one of the "use_*" prefix commits
This commit is contained in:
Joshua Leung 2009-11-29 02:14:34 +00:00
parent 36cbf42e5d
commit 16efe1ac46
2 changed files with 2 additions and 2 deletions

@ -258,7 +258,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
if con.use_fixed_position:
col.prop(con, "offset_factor", text="Offset")
else:
col.prop(con, "use_offset")
col.prop(con, "offset")
row = layout.row()
if wide_ui:

@ -101,7 +101,7 @@ class VIEW3D_PT_tools_meshedit(View3DPanel):
col.label(text="Add:")
col.operator("mesh.extrude_move")
col.operator("mesh.subdivide")
col.operator("mesh.loopcut")
col.operator("mesh.loopcut_slide")
col.operator("mesh.duplicate_move")
col.operator("mesh.spin")
col.operator("mesh.screw")