ocarina: Resize window

I resized the window to 800 x 600, and then changed the main tabs to
fill up the entire space.
This commit is contained in:
Bryan Schumaker 2011-09-09 08:23:43 -04:00
parent 976637f88b
commit 2110319176
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ void ocarina_init(int argc, char **argv)
window_title("Ocarina " + vers_str());
window_icon("images/ocarina.png");
box_pack_start(vbox, get_tabs(), FALSE, FALSE, 0);
box_pack_start(vbox, get_tabs(), TRUE, TRUE, 0);
box_pack_start(vbox, get_tiny_footer(), FALSE, FALSE, 0);
gtk_widget_show(vbox);
window_add(vbox);

View File

@ -33,7 +33,7 @@ void window_init()
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
GTK_CONNECT(window, "destroy", destroy_window, NULL);
//window_resize(800, 600);
window_resize(300, 32);
window_resize(800, 600);
gtk_widget_show(window);
}