Skip to content

Instantly share code, notes, and snippets.

@dskjal
Created September 5, 2016 04:27
Show Gist options
  • Save dskjal/368f710392ccfc2fd2b9ca28b997f74a to your computer and use it in GitHub Desktop.
Save dskjal/368f710392ccfc2fd2b9ca28b997f74a to your computer and use it in GitHub Desktop.
Blender で左揃えでボタンを配置
def draw(self, context):
layout = self.layout
row = layout.row(align=False)
row.alignment = 'LEFT'
row.operator("my.button", text="1")
row.operator("my.button", text="2")
row.operator("my.button", text="3")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment