diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-importer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index a093d4dd4c..327f2a1ce2 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -176,8 +176,8 @@ create_html (const char *name) if (!style) style = gtk_widget_get_style (html); if (style) { - gtk_html_set_default_background_color (GTK_HTML (html), - &style->bg[0]); + gtk_widget_modify_base (html, &style->bg[GTK_STATE_NORMAL]); + gtk_widget_modify_text (html, &style->fg[GTK_STATE_NORMAL]); } gtk_widget_show (html); |