From 3a1c5f72320d911071eb70bdf4656fd425f470fa Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 4 Jan 2019 10:18:11 -0500 Subject: [PATCH] Wayland: Support key theme setting GTK+ 3 has supported this all along, so we should support it for Wayland as well, for feature parity. Closes: #1553 --- gdk/wayland/gdkscreen-wayland.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gdk/wayland/gdkscreen-wayland.c b/gdk/wayland/gdkscreen-wayland.c index 4ab4023882..5935bc697e 100644 --- a/gdk/wayland/gdkscreen-wayland.c +++ b/gdk/wayland/gdkscreen-wayland.c @@ -491,6 +491,7 @@ update_xft_settings (GdkScreen *screen) static TranslationEntry translations[] = { { FALSE, "org.gnome.desktop.interface", "gtk-theme", "gtk-theme-name" , G_TYPE_STRING, { .s = "Adwaita" } }, + { FALSE, "org.gnome.desktop.interface", "gtk-key-theme", "gtk-key-theme-name" , G_TYPE_STRING, { .s = "Default" } }, { FALSE, "org.gnome.desktop.interface", "icon-theme", "gtk-icon-theme-name", G_TYPE_STRING, { .s = "gnome" } }, { FALSE, "org.gnome.desktop.interface", "cursor-theme", "gtk-cursor-theme-name", G_TYPE_STRING, { .s = "Adwaita" } }, { FALSE, "org.gnome.desktop.interface", "cursor-size", "gtk-cursor-theme-size", G_TYPE_INT, { .i = 32 } },