diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-02 17:42:13 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-02 17:42:13 +0800 |
commit | 370713a1df40ec01a7fca7a503580eebe6fc85bf (patch) | |
tree | fd10baf1ea6e73c570f370ca74969c5ba5425776 /src/empathy-chat-window.c | |
parent | d65be8a6c83ddb51e909500ebee1cbac2a34275b (diff) | |
download | gsoc2013-empathy-370713a1df40ec01a7fca7a503580eebe6fc85bf.tar gsoc2013-empathy-370713a1df40ec01a7fca7a503580eebe6fc85bf.tar.gz gsoc2013-empathy-370713a1df40ec01a7fca7a503580eebe6fc85bf.tar.bz2 gsoc2013-empathy-370713a1df40ec01a7fca7a503580eebe6fc85bf.tar.lz gsoc2013-empathy-370713a1df40ec01a7fca7a503580eebe6fc85bf.tar.xz gsoc2013-empathy-370713a1df40ec01a7fca7a503580eebe6fc85bf.tar.zst gsoc2013-empathy-370713a1df40ec01a7fca7a503580eebe6fc85bf.zip |
Redefine size_request and size_allocation on EmpathyChatClass
svn path=/trunk/; revision=850
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r-- | src/empathy-chat-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 6dd55cbae..7e4d1d1cc 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -1399,6 +1399,7 @@ empathy_chat_window_add_chat (EmpathyChatWindow *window, child = GTK_WIDGET (chat); label = chat_window_create_label (window, chat); + gtk_widget_show (child); g_signal_connect (chat, "notify::name", G_CALLBACK (chat_window_chat_notify_cb), @@ -1416,7 +1417,6 @@ empathy_chat_window_add_chat (EmpathyChatWindow *window, gtk_notebook_set_tab_detachable (GTK_NOTEBOOK (priv->notebook), child, TRUE); gtk_notebook_set_tab_label_packing (GTK_NOTEBOOK (priv->notebook), child, TRUE, TRUE, GTK_PACK_START); - gtk_widget_show (child); empathy_debug (DEBUG_DOMAIN, "Chat added (%d references)", |