summaryrefslogtreecommitdiff
path: root/gtk/gtkassistant.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-01-30 05:05:07 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-01-30 05:05:07 +0000
commit205eba7a0582accc77f4886aa05eb26c3a47c7d8 (patch)
tree39e0a2ecda9b3a923d743fea82fabd6efafcbbc8 /gtk/gtkassistant.c
parenta351e61c0bc7a8157c51fc0bc2cd1742e439e94a (diff)
downloadgtk+-205eba7a0582accc77f4886aa05eb26c3a47c7d8.tar.gz
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.
Diffstat (limited to 'gtk/gtkassistant.c')
-rw-r--r--gtk/gtkassistant.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkassistant.c b/gtk/gtkassistant.c
index d13200a7e5..b6e62bc50c 100644
--- a/gtk/gtkassistant.c
+++ b/gtk/gtkassistant.c
@@ -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);
}