From 05643e8660415f3392e34b14988a299239911693 Mon Sep 17 00:00:00 2001 From: Daniel Salazar <zanqdo@gmail.com> Date: Sun, 5 Dec 2010 07:33:05 +0000 Subject: [PATCH] Adding some icons to RotoBezier --- animation_rotobezier.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/animation_rotobezier.py b/animation_rotobezier.py index ac74cf8f5..fb1b85c33 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) -- GitLab