GtkStackSwitcher: center the button child

Set button child halign to GTK_ALIGN_CENTER since I need it to style
the needs-attention class, see:
https://bugzilla.gnome.org/show_bug.cgi?id=707153
This commit is contained in:
Lapo Calamandrei
2014-07-16 19:35:29 +02:00
parent 4af59dbd98
commit 4053ee0cca

View File

@ -137,6 +137,7 @@ rebuild_child (GtkWidget *self,
if (button_child)
{
gtk_widget_set_halign (GTK_WIDGET (button_child), GTK_ALIGN_CENTER);
gtk_widget_show_all (button_child);
gtk_container_add (GTK_CONTAINER (self), button_child);
}