forked from AuroraMiddleware/gtk
Improve alternative button ordering. (#476827, Yevgen Muntyan, patch by
2007-11-26 Matthias Clasen <mclasen@redhat.com> * gtk/gtkassistant.c: Improve alternative button ordering. (#476827, Yevgen Muntyan, patch by Carlos Garnacho) svn path=/trunk/; revision=19057
This commit is contained in:
parent
225803d3ce
commit
9936134d97
@ -1,3 +1,8 @@
|
|||||||
|
2007-11-26 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkassistant.c: Improve alternative button
|
||||||
|
ordering. (#476827, Yevgen Muntyan, patch by Carlos Garnacho)
|
||||||
|
|
||||||
2007-11-26 Matthias Clasen <mclasen@redhat.com>
|
2007-11-26 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* gtk/gtkcalendar.c: Fix a theming problem with colors
|
* gtk/gtkcalendar.c: Fix a theming problem with colors
|
||||||
|
@ -728,10 +728,10 @@ gtk_assistant_init (GtkAssistant *assistant)
|
|||||||
{
|
{
|
||||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->close, FALSE, FALSE, 0);
|
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->close, FALSE, FALSE, 0);
|
||||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->cancel, FALSE, FALSE, 0);
|
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->cancel, FALSE, FALSE, 0);
|
||||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0);
|
|
||||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->back, FALSE, FALSE, 0);
|
|
||||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->forward, FALSE, FALSE, 0);
|
|
||||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->apply, FALSE, FALSE, 0);
|
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->apply, FALSE, FALSE, 0);
|
||||||
|
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->forward, FALSE, FALSE, 0);
|
||||||
|
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->back, FALSE, FALSE, 0);
|
||||||
|
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
gtk_widget_set_parent (priv->action_area, GTK_WIDGET (assistant));
|
gtk_widget_set_parent (priv->action_area, GTK_WIDGET (assistant));
|
||||||
|
Loading…
Reference in New Issue
Block a user