[gtk+] Set the proper css class when getting attributes.



commit a67507a53e4c98b2d08e165f18d135010cc3f9df
Author: Paolo Borelli <pborelli gnome org>
Date:   Mon Jan 10 21:34:08 2011 +0100

    Set the proper css class when getting attributes.

 gtk/gtktextview.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c
index 8152d98..a2fbaac 100644
--- a/gtk/gtktextview.c
+++ b/gtk/gtktextview.c
@@ -6524,6 +6524,9 @@ gtk_text_view_set_attributes_from_style (GtkTextView        *text_view,
   context = gtk_widget_get_style_context (GTK_WIDGET (text_view));
   state = gtk_widget_get_state_flags (GTK_WIDGET (text_view));
 
+  gtk_style_context_save (context);
+  gtk_style_context_add_class (context, GTK_STYLE_CLASS_VIEW);
+
   gtk_style_context_get_background_color (context, state, &bg_color);
   gtk_style_context_get_color (context, state, &fg_color);
 
@@ -6539,6 +6542,8 @@ gtk_text_view_set_attributes_from_style (GtkTextView        *text_view,
     pango_font_description_free (values->font);
 
   values->font = pango_font_description_copy (gtk_style_context_get_font (context, state));
+
+  gtk_style_context_restore (context);
 }
 
 static void



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]