]> git.0d.be Git - empathy.git/commitdiff
Move the toolbar setup after we initialize the audio output
authorCosimo Cecchi <cosimoc@gnome.org>
Mon, 14 Sep 2009 14:24:16 +0000 (16:24 +0200)
committerCosimo Cecchi <cosimoc@gnome.org>
Mon, 14 Sep 2009 14:43:21 +0000 (16:43 +0200)
src/empathy-call-window.c

index 5a24d8840be87aa3dfd207529b4797601cd0bd26..f3a04de62551e7e88f23653303dadc6dbca03653 100644 (file)
@@ -723,8 +723,6 @@ empathy_call_window_init (EmpathyCallWindow *self)
 
   gtk_container_add (GTK_CONTAINER (self), top_vbox);
 
-  empathy_call_window_setup_toolbar (self);
-
   priv->content_hbox = gtk_hbox_new (FALSE, CONTENT_HBOX_SPACING);
   gtk_container_set_border_width (GTK_CONTAINER (priv->content_hbox),
                                   CONTENT_HBOX_BORDER_WIDTH);
@@ -773,6 +771,8 @@ empathy_call_window_init (EmpathyCallWindow *self)
       FALSE, 0);
   empathy_call_window_setup_self_frame (bus, self);
 
+  empathy_call_window_setup_toolbar (self);
+
   g_object_unref (bus);
 
   priv->sidebar_button = gtk_toggle_button_new_with_mnemonic (_("_Sidebar"));