Hello~
I put a button in the menu bar and a want the button align to left.
And i use c4d.BFH_LEFT, but the button is still align to right.
Am I using it wrong?
Here is my code:
def CreateLayout(self):
self.GroupBeginInMenuLine()
self.GroupBegin(2000, c4d.BFH_LEFT, 0, 1, "", 0, 0, 0)
self.AddButton(id=1000, flags=c4d.BFH_LEFT, name="Btn")
self.GroupEnd()
self.GroupEnd()
return True