Hey, according to http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551889 it seems that Xfce gtk theme (the default one, using gtk-xfce-engine) use an unknown property: Gtk-Message: /usr/share/themes/Xfce/gtk-2.0/gtkrc:46: failed to retrieve property `GtkOptionMenu::indicator-size' of type `GtkRequisition' from rc file value "0" of type `glong' Gtk-Message: /usr/share/themes/Xfce/gtk-2.0/gtkrc:47: failed to retrieve property `GtkOptionMenu::indicator-spacing' of type `GtkBorder' from rc file value "0" of type `glong' HTH, -- Yves-Alexis
Created attachment 2905 Remove deprecated GtkOptionMenu style properties
Created attachment 3222 gtkrc.diff You are right, GtkOptionMenu has been deprecated in favor of GtkComboBox. But this does not mean it should not be fixed in a more complete way :-) The error message indicates that both properties ARE(!) known but they are of a different data type. "GtkOptionMenu::indicator-size" is of type "GtkRequisition" <http://library.gnome.org/devel/gtk/stable/GtkWidget.html#GtkRequisition>: typedef struct { gint width; gint height; } GtkRequisition; "GtkOptionMenu::indicator-spacing" is of type "GtkBorder" <http://library.gnome.org/devel/gtk/stable/GtkStyle.html#GtkBorder>: typedef struct { gint16 left; gint16 right; gint16 top; gint16 bottom; } GtkBorder; For reference I have attached a small patch... Bye
fixed in git master