From bc6068cbda385fb0dc43df0037291acbc6339fec Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Fri, 21 Oct 2011 17:55:27 -0400 Subject: [PATCH] ocarina: Move controls to the right of the window They have been on the left for a while, but I like them better on the right. --- ocarina/footer/tiny.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ocarina/footer/tiny.cpp b/ocarina/footer/tiny.cpp index a9bb68e5..79360a9e 100644 --- a/ocarina/footer/tiny.cpp +++ b/ocarina/footer/tiny.cpp @@ -6,7 +6,7 @@ static GtkWidget *footer = NULL; static void footer_pack(GtkWidget *widget) { - box_pack_start(footer, widget, FALSE, FALSE, 0); + box_pack_end(footer, widget, FALSE, FALSE, 0); } static void make_tiny_footer() @@ -14,13 +14,13 @@ static void make_tiny_footer() footer = gtk_hbox_new(FALSE, 0); gtk_widget_show(footer); - footer_pack(make_open_button()); - footer_pack(make_rewind_button()); - footer_pack(make_forward_button()); - footer_pack(make_play_button()); - footer_pack(make_pause_button()); - footer_pack(make_stop_button()); footer_pack(make_volume_button()); + footer_pack(make_stop_button()); + footer_pack(make_pause_button()); + footer_pack(make_play_button()); + footer_pack(make_forward_button()); + footer_pack(make_rewind_button()); + footer_pack(make_open_button()); } GtkWidget *get_tiny_footer()