How to change the label of a MenuItem in a PyGTK application?

1.7k Views Asked by At

I'm writing a small Application Indicator for Ubuntu in Python. I need to change the text of an insensitive (disabled) gtk.MenuItem. I know a living example for this function, the topmost item in the built-in Bluetooth Indicator.

1

There are 1 best solutions below

3
On

The gtk.MenuItem is a container that usually has the actual label as its child widget, unless there is something more complicated like an image involved; if the child is just a simple label, you should be able to do

menuitem.get_child().set_text('New text')