From a4f1ffde7af7a197d57f63d105d520393e51c5dd Mon Sep 17 00:00:00 2001 From: tshirtman Date: Fri, 2 Nov 2012 16:49:06 +0100 Subject: [PATCH] makes the "this label fits to the content" really fit to the content --- examples/demo/showcase/showcase.kv | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/demo/showcase/showcase.kv b/examples/demo/showcase/showcase.kv index 41f0efcc8..28837ce5c 100644 --- a/examples/demo/showcase/showcase.kv +++ b/examples/demo/showcase/showcase.kv @@ -313,6 +313,8 @@ title: 'Panel 1' Label: text: 'This is a label fit to the content view' + halign: 'center' + text_size: self.width, None AccordionItem: title: 'Panel 2' @@ -323,6 +325,8 @@ title: 'Panel 3' Label: text: 'This is a label fit to the content view' + halign: 'center' + text_size: self.width, None Accordion: @@ -333,6 +337,7 @@ title: 'Panel 1' Label: text: 'This is a label fit to the content view' + text_size: self.width, None AccordionItem: title: 'Panel 2' @@ -343,6 +348,7 @@ title: 'Panel 3' Label: text: 'This is a label fit to the content view' + text_size: self.width, None VSeparator