Created
September 5, 2016 04:27
-
-
Save dskjal/368f710392ccfc2fd2b9ca28b997f74a to your computer and use it in GitHub Desktop.
Blender で左揃えでボタンを配置
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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