summary refs log tree commit diff stats
path: root/src/fe-gtk
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2017-05-12 00:49:45 -0400
committerPatrick Griffis <tingping@tingping.se>2017-05-12 00:49:45 -0400
commit76430228e12c6b71359a50bf7e8b4c3dd26043c9 (patch)
treec91d0b8261cf600d9ac78324653220e15aacb4cb /src/fe-gtk
parentfc2fe7fd28c5cc3748a95f619c048cfe0a30ab15 (diff)
Fix input theming with Adwaita-dark also
Diffstat (limited to 'src/fe-gtk')
-rw-r--r--src/fe-gtk/fe-gtk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c
index 0f23f7f7..ac98da37 100644
--- a/src/fe-gtk/fe-gtk.c
+++ b/src/fe-gtk/fe-gtk.c
@@ -296,7 +296,7 @@ create_input_style (GtkStyle *style)
 		/* gnome-themes-standard 3.20 relies on images to do theming
 		 * so we have to override that. */
 		g_object_get (settings, "gtk-theme-name", &theme_name, NULL);
-		if (!g_strcmp0 (theme_name, "Adwaita"))
+		if (g_str_has_prefix (theme_name, "Adwaita"))
 			gtk_rc_parse_string (adwaita_workaround_rc);
 		g_free (theme_name);