How can I modify widgets from a forked process (through os.fork)? This is
what I currently which does not work:

self.pid = os.fork()
if self.pid == 0:
    self.start.set_label("Start")
    self.hours.set_sensitive(True)
    self.minutes.set_sensitive(True)
    self.seconds.set_sensitive(True)
    self.message.set_sensitive(True)
_______________________________________________
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/

Reply via email to