mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Move the last button to the left where it does not affect the positioning
2006-01-30 Matthias Clasen <mclasen@redhat.com> * gtk/gtkassistant.c (gtk_assistant_init): Move the last button to the left where it does not affect the positioning of forward/back.
This commit is contained in:
parent
a351e61c0b
commit
205eba7a05
@ -1,3 +1,9 @@
|
||||
2006-01-30 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkassistant.c (gtk_assistant_init): Move the
|
||||
last button to the left where it does not affect
|
||||
the positioning of forward/back.
|
||||
|
||||
2006-01-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
More GtkAssistant work, by Carlos Garnacho.
|
||||
|
@ -1,3 +1,9 @@
|
||||
2006-01-30 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkassistant.c (gtk_assistant_init): Move the
|
||||
last button to the left where it does not affect
|
||||
the positioning of forward/back.
|
||||
|
||||
2006-01-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
More GtkAssistant work, by Carlos Garnacho.
|
||||
|
@ -707,9 +707,9 @@ gtk_assistant_init (GtkAssistant *assistant)
|
||||
if (!alternative_button_order (assistant))
|
||||
{
|
||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->apply, 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->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_box_pack_end (GTK_BOX (priv->action_area), assistant->cancel, FALSE, FALSE, 0);
|
||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->close, FALSE, FALSE, 0);
|
||||
}
|
||||
@ -717,9 +717,9 @@ 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->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->last, FALSE, FALSE, 0);
|
||||
gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->apply, FALSE, FALSE, 0);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user