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>2013-02-22 06:10:41 +0400
committerJoshua Leung <aligorith@gmail.com>2013-02-22 06:10:41 +0400
commite663f249780389da25d0250907af332dd991daea (patch)
treedf64b7fd6d3249a6928f5b2383b273df72661468 /release
parentde7b39c9da5a3c58bd2bc960a749f930ce617ee8 (diff)
Expose a few more operators for curves on the toolbar. Some of these were
previously not available anywhere.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index d64920625f7..cba3cf05191 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -264,6 +264,8 @@ class VIEW3D_PT_tools_curveedit(View3DPanel, Panel):
col.operator("curve.cyclic_toggle")
col.operator("curve.switch_direction")
col.operator("curve.spline_type_set")
+ col.operator("curve.radius_set")
+ col.operator("curve.smooth_radius")
col = layout.column(align=True)
col.label(text="Handles:")
@@ -278,6 +280,7 @@ class VIEW3D_PT_tools_curveedit(View3DPanel, Panel):
col.label(text="Modeling:")
col.operator("curve.extrude_move", text="Extrude")
col.operator("curve.subdivide")
+ col.operator("curve.smooth")
draw_repeat_tools(context, layout)