Sorry, we don't support your browser.  Install a modern browser
This post is closed.

ToggleButton text is invisible since v14#2790

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)",
    },
}})
5 months ago
1
Changed the status to
In Progress
5 months ago
1

Ah, glad to know this is being resolved!

5 months ago
Changed the status to
Completed
5 months ago