Post #281: ![](https://blenderartists.org/user_avatar/blenderartists.org/minato/48/21129_2.

📋 Metadata

  • Author: roaoao
  • Date: 2016-08-23 05:23:26
  • Type: answer
  • Quality Score: 8/10
  • Reply to: post_00279

🏷️ Tags

pie-menu custom-layouts intermediate solved

  • Pie Menu Editor
  • Custom tab
  • Python Scripting

💬 Content

minato:

is there anyway to split a pie menu item into 2 buttons, for example box.operator, as seen in some of wazou’s pie menus? i know it can be done by creating a separate popup dialog but creating one just for 2 buttons seems inefficient tbh.

Yes, you can use Custom tab:

box = L.box(); col = box.column(True); col.operator("object.shade_smooth"); col.operator("object.shade_flat")

🔗 View on Blender Artists