GUI: Tick toggle

Hi,

I thought my toggles were checkboxes. I’ve been through all the options to no avail… Was I mistaken?

Here’s my current workaround!


        if context.scene.T_insert:
            split.prop(context.scene, "T_insert", text="", toggle=True, icon='FILE_TICK')
        else:
            split.prop(context.scene, "T_insert", text="", toggle=True)

Also, white text? (Like next to the checkboxes in “World” -> “World” -> “Paper Sky”)
Or is special usage of enabled=True/False required?

Small fiddly bits I know but… This is an BlenderArtists :wink:

remove the toggle parameter completely and it will default to checkbox. That how i did with my script.