diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-08-12 23:51:45 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-08-15 19:14:55 +0800 |
commit | 253837eb32f9fb2ab2b6cd8e60fb8880d04ba016 (patch) | |
tree | fc4ee4e027d13fab0401422f16d0e57d6d3be634 /src/empathy-call-window.c | |
parent | 5e685d03af4b3f278236c27420a12302ea76e736 (diff) | |
download | gsoc2013-empathy-253837eb32f9fb2ab2b6cd8e60fb8880d04ba016.tar gsoc2013-empathy-253837eb32f9fb2ab2b6cd8e60fb8880d04ba016.tar.gz gsoc2013-empathy-253837eb32f9fb2ab2b6cd8e60fb8880d04ba016.tar.bz2 gsoc2013-empathy-253837eb32f9fb2ab2b6cd8e60fb8880d04ba016.tar.lz gsoc2013-empathy-253837eb32f9fb2ab2b6cd8e60fb8880d04ba016.tar.xz gsoc2013-empathy-253837eb32f9fb2ab2b6cd8e60fb8880d04ba016.tar.zst gsoc2013-empathy-253837eb32f9fb2ab2b6cd8e60fb8880d04ba016.zip |
CallWindow: create the rectangles after the avatar
As we want them to be on top of the avatar when they're shown.
Diffstat (limited to 'src/empathy-call-window.c')
-rw-r--r-- | src/empathy-call-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 6fc9cf8e1..e8f5e092c 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1296,8 +1296,6 @@ empathy_call_window_init (EmpathyCallWindow *self) priv->video_box = clutter_box_new (priv->video_layout); - empathy_call_window_create_preview_rectangles (self); - priv->video_container = gtk_clutter_embed_new (); /* Set the background color to that of the rest of the window */ @@ -1331,6 +1329,8 @@ empathy_call_window_init (EmpathyCallWindow *self) clutter_container_add_actor (CLUTTER_CONTAINER (priv->video_box), remote_avatar); + empathy_call_window_create_preview_rectangles (self); + gtk_box_pack_start (GTK_BOX (priv->content_hbox), priv->video_container, TRUE, TRUE, CONTENT_HBOX_CHILDREN_PACKING_PADDING); |