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:
authorJoshua Leung <aligorith@gmail.com>2009-11-29 05:14:34 +0300
committerJoshua Leung <aligorith@gmail.com>2009-11-29 05:14:34 +0300
commit16efe1ac46fca2fafda292344a37f1f2deede2a0 (patch)
tree65bd9b5b4173dc6e6bdd8a9f6c50a3e3c9e7baf3 /release/scripts/ui
parent36cbf42e5d0806d3b94163517e953d1e1f0e2cf4 (diff)
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
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/properties_object_constraint.py2
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py
index 8a1d26518fe..d6552585191 100644
--- a/release/scripts/ui/properties_object_constraint.py
+++ b/release/scripts/ui/properties_object_constraint.py
@@ -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:
diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py
index fe267c725a2..8559efa42c6 100644
--- a/release/scripts/ui/space_view3d_toolbar.py
+++ b/release/scripts/ui/space_view3d_toolbar.py
@@ -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")