mirror of https://github.com/kivy/kivy.git
example/scatter: add size to show that when we are scaling the scatter, size is unchanged
This commit is contained in:
parent
353178625e
commit
6286d2f387
|
@ -36,6 +36,9 @@
|
|||
Label:
|
||||
text: 'Position\n' + str(root.pos)
|
||||
text_size: (root.width, None)
|
||||
Label:
|
||||
text: 'Size\n' + str(root.size)
|
||||
text_size: (root.width, None)
|
||||
Label:
|
||||
text: 'Center\n' + str(root.center)
|
||||
text_size: (root.width, None)
|
||||
|
@ -48,4 +51,3 @@
|
|||
Label:
|
||||
text: 'Right\n' + str(root.right)
|
||||
text_size: (root.width, None)
|
||||
|
||||
|
|
Loading…
Reference in New Issue