Extend input box GTK theme workaround to include Yaru

Fixes #2305
This commit is contained in:
cajuncooks 2019-02-25 10:03:56 -07:00 committed by Patrick
parent 804f959a1d
commit c1091c38b8
1 changed files with 2 additions and 2 deletions

View File

@ -293,10 +293,10 @@ create_input_style (GtkStyle *style)
GtkSettings *settings = gtk_settings_get_default ();
char *theme_name;
/* gnome-themes-standard 3.20 relies on images to do theming
/* 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_str_has_prefix (theme_name, "Adwaita"))
if (g_str_has_prefix (theme_name, "Adwaita") || g_str_has_prefix (theme_name, "Yaru"))
gtk_rc_parse_string (adwaita_workaround_rc);
g_free (theme_name);