Re: gdk_threads_enter/leave() in threaded and non threaded situation (SOLVED)

2005-02-12 Thread Stefan Kost
just a closing follow up. I found a solution in rythmbox sources : static GThread *main_thread = NULL; void rb_thread_helpers_init (void) { main_thread = g_thread_self (); } gboolean rb_thread_helpers_in_main_thread (void) { return (main_thread == g_thread_self ()); } void

art_render_invoke: no image source given

2005-02-12 Thread Rob Benton
Hey guys I'm trying to track down an error/warning that I'm getting (subject title). The problem seems to happen when I create a pixbuf with gtk_pixbuf_new_from_file_at_size() function to load an SVG. But it only seems to happen in 1 place in my code or maybe the 1 SVG I'm using there. The