Skip to content

Commit

Permalink
Graph Editor - iconize the Key menu - Submenu Transform
Browse files Browse the repository at this point in the history
  • Loading branch information
ReinerBforartists committed Nov 23, 2017
1 parent 7c7f7f6 commit 76e690a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release/scripts/startup/bl_ui/space_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,10 +324,10 @@ class GRAPH_MT_key_transform(Menu):
def draw(self, context):
layout = self.layout

layout.operator("transform.translate", text="Grab/Move")
layout.operator("transform.transform", text="Extend").mode = 'TIME_EXTEND'
layout.operator("transform.rotate", text="Rotate")
layout.operator("transform.resize", text="Scale")
layout.operator("transform.translate", text="Grab/Move", icon = "TRANSFORM_MOVE")
layout.operator("transform.transform", text="Extend", icon = "SHRINK_FATTEN").mode = 'TIME_EXTEND'
layout.operator("transform.rotate", text="Rotate", icon = "TRANSFORM_ROTATE")
layout.operator("transform.resize", text="Scale", icon = "TRANSFORM_SCALE")


class GRAPH_MT_delete(Menu):
Expand Down

0 comments on commit 76e690a

Please sign in to comment.