According to http://www.gnome.org/~fpeters/299.html libcanberra-0.10 uses GTK_PRIORITY_REDRAW which is deprecated. See http://library.gnome.org/devel/gtk/stable/gtk-General.html#GTK-PRIORITY-REDRAW--CAPS $:andre\> grep -r GTK_PRIORITY_REDRAW . ./src/canberra-gtk-module.c: if (idle_id == 0) idle_id = g_idle_add_full(GTK_PRIORITY_REDRAW-1, (GSourceFunc) idle_cb, NULL, NULL);
Created attachment 25296 [details] [review] patch. For careful consumption. I'm always confused if it's really that easy.
The patch looks good to me. #define GTK_PRIORITY_REDRAW (G_PRIORITY_HIGH_IDLE + 20) #define GDK_PRIORITY_REDRAW (G_PRIORITY_HIGH_IDLE + 20) From: http://library.gnome.org/devel/gtk/stable/gtk-General.html#GTK-PRIORITY-REDRAW--CAPS and: http://library.gnome.org/devel/gdk/stable/gdk-Events.html#GDK-PRIORITY-REDRAW--CAPS
Looks good. Thanks for your work! Applied.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.