mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
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.
This commit is contained in:
parent
e084e5c67e
commit
bb6057bfb7
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user