ocarina: Remove unnecessary widgets

I can now add the body tabs directly to the window, rather than packing
them in a box with other things.
This commit is contained in:
Bryan Schumaker 2011-10-22 08:53:32 -04:00
parent bc6068cbda
commit c3fd002e92
1 changed files with 1 additions and 6 deletions

View File

@ -27,16 +27,11 @@ void ocarina_idle_add()
void ocarina_init(int argc, char **argv)
{
GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
window_init();
window_title("Ocarina " + vers_str());
window_icon("images/ocarina.png");
box_pack_start(vbox, get_tabs(), TRUE, TRUE, 0);
gtk_widget_show(vbox);
window_add(vbox);
window_add(get_tabs());
library_init();
settings_init();
}