Issue 121: MTLabel's halign='center' or 'right' do not apply
Status:  Done
Owner:
Closed:  Dec 2009
Project Member Reported by tommy.bjorling@gmail.com, Dec 6, 2009
What steps will reproduce the problem?
1. Make a simple app with a MTLabel
2. Add the halign parameter to make the text center or right.


What is the expected output? What do you see instead?
The text do not align center or right. It's always aligned to left.

Here is a small sample for this:

from pymt import *
w = MTWindow()
label = MTLabel(label="This is a\nmultiline label.", multiline=True, 
autoheight=True, halign='center', font_size=12, pos=(20, 20))
w.add_widget(label)
runTouchApp()
Dec 8, 2009
Project Member #1 txprog
(No comment was entered for this change.)
Owner: txprog
Labels: Component-Core
Dec 12, 2009
Project Member #2 txprog
(No comment was entered for this change.)
Status: Done