On Sat, 2003-07-12 at 17:27, no6@pobox.com wrote: > How do I make a menu item that appears on a menu not selectable? I want > it to be in that half visable, grayed out state, but you can't select > that menu item. I also need to be able to change its state back to > selectable. There must be a property that controls this, but I can't seem > to find it. Use gtk_widget_set_sensitive (GTK_WIDGET (menu_item), FALSE)); Soeren