Pete> Is there a way to make a menu item's text bold. Can't see a
Pete> set_markup() method
I believe you have to get ahold of the menu item's label and call set_markup
on it, something like:
label = item.get_children()[0]
label.set_markup("<b>Hi Pete!</b>")
(I'm not at work though, so I don't have immediate access to verify that.)
Skip