[gnome-games] quadrapassel: Fix packing in settings dialog



commit 6999d66d11a8147288c2bedc6f438f3da8e8f8c3
Author: Robert Ancell <robert ancell canonical com>
Date:   Fri Dec 30 15:00:58 2011 +1100

    quadrapassel: Fix packing in settings dialog

 quadrapassel/src/tetris.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/quadrapassel/src/tetris.cpp b/quadrapassel/src/tetris.cpp
index f3d6e5d..fbea3b5 100644
--- a/quadrapassel/src/tetris.cpp
+++ b/quadrapassel/src/tetris.cpp
@@ -735,7 +735,7 @@ Tetris::gameProperties(GtkAction *action, void *d)
 	gtk_notebook_append_page (GTK_NOTEBOOK(notebook), vbox, label);
 
 	frame = games_frame_new (_("Keyboard Controls"));
-	gtk_container_add (GTK_CONTAINER (vbox), frame);
+	gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 0);
 
 	fvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
 	gtk_container_add (GTK_CONTAINER (frame), fvbox);
@@ -759,7 +759,7 @@ Tetris::gameProperties(GtkAction *action, void *d)
 	gtk_notebook_append_page (GTK_NOTEBOOK(notebook), vbox, label);
 
 	frame = games_frame_new (_("Block Style"));
-	gtk_container_add (GTK_CONTAINER (vbox), frame);
+	gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 0);
 
 	fvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
 	gtk_container_add (GTK_CONTAINER (frame), fvbox);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]