
Since v14, ToggleButton text is invisible.
Expected: ToggleButton shows its text property.
Actual: ToggleButton does not display any text at all.
Adding textShadow, textOutline, resizeTextForBestFit, fontSize, does not result in any difference.
Button
-- Button type properly shows the text "foobar"
UI.setXmlTable({{
tag = "Button",
attributes = {
id = "mybutton",
width = "240",
height = "80",
visibility = "White|Brown|Red|Orange|Yellow|Green|Teal|Blue|Purple|Pink",
text = "foobar",
colors = "rgb(1,1,1)|rgb(0.9,0.9,0.9)|rgb(0.78,0.78,0.78)|rgba(0.78,0.78,0.78,0.5)",
},
}})ToggleButton
-- ToggleButton type does not show the text "foobar"
UI.setXmlTable({{
tag = "ToggleButton",
attributes = {
id = "mybutton",
width = "240",
height = "80",
visibility = "White|Brown|Red|Orange|Yellow|Green|Teal|Blue|Purple|Pink",
text = "foobar",
colors = "rgb(1,1,1)|rgb(0.9,0.9,0.9)|rgb(0.78,0.78,0.78)|rgba(0.78,0.78,0.78,0.5)",
},
}})

Ah, glad to know this is being resolved!
