GNOME Bugzilla – Bug 771963
GtkPaned warning in gtk_paned_realize
Last modified: 2016-09-29 15:58:03 UTC
We've seen these in other places, offender is: g_object_unref (attributes.cursor); I just did a new jhbuild setup, so chances are I'm just missing a cursors package. (gdb) bt
+ Trace 236701
That would be attributes.cursor = gdk_cursor_new_from_name (gtk_widget_get_display (widget), priv->orientation == GTK_ORIENTATION_HORIZONTAL ? "col-resize" : "row-resize") failing. These are 'standard' cursor names, and the gdk backends will try fallbacks to ensure that you get a suitable cursor. So, you must be lacking any kind of decent cursor theme. We could just swipe this under the rug by using g_clear_object
I think that's what we've done in other places, which sounds good to me. I've installed adwaita-icon-theme and gnome-themes-standard and I'm still seeing this in my jhbuild. Not exactly sure what other package I need to get.
adwaita-cursor-theme ?
Unless I'm missing something, that is part of adwaita-icon-theme git/jhbuild module.
Yeah, not sure. We do have a test for the standard cursor names in testsuite/gtk/check-cursor-names You could run that and see if it complains ?
I've now fixed the unref to be NULL-safe anyway