wayland: Advertise the cursor theme through GtkSettings as Adwaita

... as per the way we advertise a GTK theme to use.
This commit is contained in:
Rob Bradford 2013-02-05 13:07:28 +00:00
parent a34d27d3ea
commit 69e9ecf90a

View File

@ -309,6 +309,13 @@ gdk_wayland_screen_get_setting (GdkScreen *screen,
g_value_set_string (value, s);
return TRUE;
}
if (strcmp ("gtk-cursor-theme-name", name) == 0)
{
const gchar *s = "Adwaita";
GDK_NOTE(MISC, g_print("gdk_screen_get_setting(\"%s\") : %s\n", name, s));
g_value_set_string (value, s);
return TRUE;
}
else if (strcmp ("gtk-icon-theme-name", name) == 0)
{
const gchar *s = "gnome";