ocarina: Smaller window

I only have two buttons.  I don't need to take up an 800 x 600 window
yet.
This commit is contained in:
Bryan Schumaker 2011-08-21 19:28:54 -04:00
parent 3e2f374bf8
commit edc46f9ced
1 changed files with 2 additions and 1 deletions

View File

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