Hi
I have a wxpython app designed using XRC which has a multiline textctrl inside nested boxlayouts.
I'm adding some text(retrieved from the web) to the text control using SetValue(), inside the longtask method from a separate thread using the following code
thread.start_new_thread(self.longtask, ())
The app runs fine the first couple of tries(text gets added correctly) but after around 3 or 4 times it exits with a segmentation fault and following warning.
(python:3341): Gtk-WARNING **: unable to find signal handler for object(GtkEntry:0x9ed89e0) with func(0x837600) and data(0x9e19c08)
Does anyone know why this is happening and how I can fix it? I'm running Python2.6 on Ubuntu 10.2.
Thanks in advance.