Before this release (2013.2076) I was creating widgets 2.0 buttons in my app , and changing their color using setFillColor() . Everything was working fine, buttons looked like this
but after the update the text is now covered by the filling color
when I touch the button and release it , then it looks as it should (the text becomes white and border darker).
this is the code I am using :
[lua] playBtn = widget.newButton{
label=“Play Now”,
labelColor = { default={255}, over={128} },
emboss = true,
width=154, height=40,
onRelease = onPlayBtnRelease
}
playBtn:setFillColor( 34, 140, 35 ) [/lua]
Is this a bug introduced in this release? Is there a solution for it?
Thanks in advance for your help!