tags:

views:

29

answers:

2

Hi to all. how can i make enabled or dissabled gtk.Button? Thank you

+1  A: 
my_button.set_sensitive(False)

True is enabled, False disabled. See the gtk.Widget documentation.

Matthew Flaschen
A: 

Matthew, thank you!

shk