Comment 7 for bug 1359564

Revision history for this message
acllos (accountlostin) wrote :

psensors ran in a similar problem, which appears to be a bug in GTK itself making it incompatible with glib >= 2.41 (both from gnome...)
https://bugs.launchpad.net/ubuntu/+source/psensor/+bug/1346299

it was solved by the packager by avoiding a call to the now deprecated gdk_threads_init which triggered the bug for unknown reasons.

radiotray too attempts to call "gtk.gdk.threads_init", in src/SysTray.py:185

    def run(self):
        gtk.gdk.threads_init()
        gtk.main()

which is also present in the bt.
maybe avoiding to call gtk.gdk.threads_init() would solve the problem for radiotray too? I'll try to create a patch file.
and, shouldn't a bug opened against GTK?