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()