I have a project in Python 2.7 and PyGTK 2.24.
I have the following code in my project:
expTSet = gtk.Expander()
expTSet.set_use_markup(True)
expTSet.set_label('<span font_family="serif" size="18" weight="bold">Teacher Settings</span>')
settingFixed.put(expTSet, 30, 200)
expTSet.show()
The expander itself appears, but the label does not. What am I doing wrong? How do I make the expander's label visible?