From: Cosimo Cecchi Date: Mon, 14 Sep 2009 14:24:16 +0000 (+0200) Subject: Move the toolbar setup after we initialize the audio output X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=1d14dfb12afb8f2cdd8db903573665799b4c7311 Move the toolbar setup after we initialize the audio output --- diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 5a24d884..f3a04de6 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -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"));