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.
This commit is contained in:
Bryan Schumaker 2011-10-21 17:55:27 -04:00
parent 882f917c8f
commit bc6068cbda
1 changed files with 7 additions and 7 deletions

View File

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