[gtk+] GtkStackSwitcher: Simplify setting of .needs-attention



commit bb6057bfb709786bcc7c8dea71ee37f6fa53ec5e
Author: Matthias Clasen <mclasen redhat com>
Date:   Wed Jul 16 21:08:27 2014 -0400

    GtkStackSwitcher: Simplify setting of .needs-attention
    
    Always add the .needs-attention style class, even if the button
    is active. Themes can already avoid showing anything in this case.

 gtk/gtkstackswitcher.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkstackswitcher.c b/gtk/gtkstackswitcher.c
index 418f2fe..35d82b8 100644
--- a/gtk/gtkstackswitcher.c
+++ b/gtk/gtkstackswitcher.c
@@ -156,7 +156,7 @@ update_needs_attention (GtkWidget *widget, GtkWidget *button, gpointer data)
                            NULL);
 
   context = gtk_widget_get_style_context (button);
-  if (needs_attention && !gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)))
+  if (needs_attention)
     gtk_style_context_add_class (context, GTK_STYLE_CLASS_NEEDS_ATTENTION);
   else
     gtk_style_context_remove_class (context, GTK_STYLE_CLASS_NEEDS_ATTENTION);


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