From edc46f9ced19191bf9dcb0d4fc7e661d63271f2c Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Sun, 21 Aug 2011 19:28:54 -0400 Subject: [PATCH] ocarina: Smaller window I only have two buttons. I don't need to take up an 800 x 600 window yet. --- gui/window.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/window.cpp b/gui/window.cpp index d7d4f6fd..8ba97a74 100644 --- a/gui/window.cpp +++ b/gui/window.cpp @@ -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); }