Object Order In Stacklayout (kivy)
I have a layout = StackLayout() now I put buttons like this for x in range(9): # range() explanation: http://pythoncentral.io/pythons-range-function-explained/ bt = B
Solution 1:
Kivy reverses the order here for reasons to do with internal dispatching order. It doesn't have to, but it's a design decision.
However, this really doesn't matter at all. If you want to store your objects in some particular structure, do that yourself.
Post a Comment for "Object Order In Stacklayout (kivy)"