[EMAIL PROTECTED] wrote:
I have a GtkWindow and children defined in glade that I instantiate multiple times and place into a notebook. One of the window's descendants is a radio button. I want all instances of that radio button across the different windows to belong to the same group. Unfortunately, glade insists that each radio button be placed in a group, and rb.set_group() won't let me change the group on-the-fly (after instantiating the window and its kids). Is
use a radiobutton in a different group as the group arg to set_group():
rb0.set_group(rb2) or: rb0.props.group = rb2 This will put rb0 in the same group as rb2 John _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
