Skip to content
Snippets Groups Projects
Commit 8fa1c78a authored by Jonathan Smith's avatar Jonathan Smith
Browse files

Forgot to change layout.operator() to layout.menu() so view3d_MT_transform wasn't working...

parent 2c1adf73
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ class VIEW3D_MT_Dynamic_Menu(bpy.types.Menu):
layout.separator()
# Transform block
layout.operator('VIEW3D_MT_Transform', icon='MAN_TRANS')
layout.menu('VIEW3D_MT_Transform', icon='MAN_TRANS')
layout.separator()
# Other things
......@@ -150,7 +150,7 @@ class VIEW3D_MT_Dynamic_Menu(bpy.types.Menu):
layout.separator()
# Transform block
layout.operator('VIEW3D_MT_Transform', icon='MAN_TRANS')
layout.menu('VIEW3D_MT_Transform', icon='MAN_TRANS')
layout.separator()
# Select block
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment