[brasero] Fix after the patch to allow use of G_SEAL



commit 8dd46ab1376f056df3e6a222705c7decdaf7c80b
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date:   Mon Dec 7 21:49:26 2009 +0100

    Fix after the patch to allow use of G_SEAL
    Some widgets were packed in a wrong order

 libbrasero-burn/brasero-tool-dialog.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/libbrasero-burn/brasero-tool-dialog.c b/libbrasero-burn/brasero-tool-dialog.c
index edb838c..d628ed3 100644
--- a/libbrasero-burn/brasero-tool-dialog.c
+++ b/libbrasero-burn/brasero-tool-dialog.c
@@ -182,11 +182,11 @@ brasero_tool_dialog_get_burn (BraseroToolDialog *self)
 
 	priv->burn = brasero_burn_new ();
 	g_signal_connect (priv->burn,
-			  "progress_changed",
+			  "progress-changed",
 			  G_CALLBACK (brasero_tool_dialog_progress_changed),
 			  self);
 	g_signal_connect (priv->burn,
-			  "action_changed",
+			  "action-changed",
 			  G_CALLBACK (brasero_tool_dialog_action_changed),
 			  self);
 
@@ -566,6 +566,12 @@ brasero_tool_dialog_init (BraseroToolDialog *obj)
 	gtk_widget_set_sensitive (priv->lower_box, FALSE);
 	gtk_widget_show (priv->lower_box);
 
+	gtk_box_pack_start (GTK_BOX (content_area),
+			    priv->lower_box,
+			    FALSE,
+			    FALSE,
+			    0);
+
 	title_str = g_strdup_printf ("<b>%s</b>", _("Progress"));
 	title = gtk_label_new (title_str);
 	g_free (title_str);
@@ -592,12 +598,6 @@ brasero_tool_dialog_init (BraseroToolDialog *obj)
 			    FALSE,
 			    0);
 
-	gtk_box_pack_start (GTK_BOX (content_area),
-			    priv->lower_box,
-			    FALSE,
-			    FALSE,
-			    0);
-
 	/* buttons */
 	priv->cancel = gtk_button_new_from_stock (GTK_STOCK_CLOSE);
 	gtk_widget_show (priv->cancel);



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