Something is terrible wrong with text resizing in newest public release
Result of following code is in screenshot
local a = display.newText { text = "Font Size: 14", fontSize = 14, } a.x , a.y = 160 , 50 local b = display.newText { text = "Font Size: 14", fontSize = 14, } b.x , b.y = 160 , 80 b.size = 14 local c = display.newText { text = "Font Size: 14", fontSize = 14, } c.size = 7 c.x , c.y = 160 , 120
Update:
On devices (compared Nexus 4 and Galaxy S) there is even different behaviour.
On Nexus 4 it looks exactly the same as on screenshot, while on Galaxy S text C is a bit smaller than text A, while text B stays bigger.