Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Salazar <zanqdo@gmail.com>2010-12-05 10:33:05 +0300
committerDaniel Salazar <zanqdo@gmail.com>2010-12-05 10:33:05 +0300
commit05643e8660415f3392e34b14988a299239911693 (patch)
tree000c5aefaa31d5f9f6e814e79a89ef961de2df24 /animation_rotobezier.py
parent96d8a65e7ae8122d6851e1b2811a0d0c37ba0b47 (diff)
Adding some icons to RotoBezier
Diffstat (limited to 'animation_rotobezier.py')
-rw-r--r--animation_rotobezier.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/animation_rotobezier.py b/animation_rotobezier.py
index ac74cf8f..fb1b85c3 100644
--- a/animation_rotobezier.py
+++ b/animation_rotobezier.py
@@ -97,19 +97,19 @@ class VIEW3D_PT_rotobezier(bpy.types.Panel):
row.prop(context.window_manager, "key_tilt")
row = col.row()
- row.operator('curve.insert_keyframe_rotobezier')
- row.operator('curve.delete_keyframe_rotobezier')
+ row.operator('curve.insert_keyframe_rotobezier', icon='KEY_HLT')
+ row.operator('curve.delete_keyframe_rotobezier', icon='KEY_DEHLT')
row = layout.row()
- row.operator('curve.clear_animation_rotobezier')
+ row.operator('curve.clear_animation_rotobezier', icon='CANCEL')
col = layout.column()
col.label(text="Display:")
row = col.row()
- row.operator('curve.toggle_draw_rotobezier')
+ row.operator('curve.toggle_draw_rotobezier', icon='MESH_CIRCLE')
if context.mode == 'EDIT_CURVE':
- row.operator('curve.toggle_handles_rotobezier')
+ row.operator('curve.toggle_handles_rotobezier', icon='CURVE_BEZCIRCLE')
col = layout.column(align=True)