diff --git a/examples/widgets/scatter.kv b/examples/widgets/scatter.kv index 6073758d0..33e4a46f9 100644 --- a/examples/widgets/scatter.kv +++ b/examples/widgets/scatter.kv @@ -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) -