From f8ad8a338f25f8a82a3d769b14c333b594c146be Mon Sep 17 00:00:00 2001 From: Alban Browaeys Date: Fri, 15 Feb 2013 23:15:32 +0100 Subject: [PATCH] empathy-chat: do not disable scrollback for rooms (irc and alike). --- libempathy-gtk/empathy-chat.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 35f908b..a0a2362 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -3469,15 +3469,8 @@ chat_constructed (GObject *object) TPL_EVENT_MASK_TEXT, chat_log_filter, chat); g_object_unref (target); - if (priv->handle_type != TP_HANDLE_TYPE_ROOM) { - /* First display logs from the logger and then display pending messages */ - chat_add_logs (chat); - } - else { - /* Just display pending messages for rooms */ - priv->can_show_pending = TRUE; - show_pending_messages (chat); - } + /* First display logs from the logger and then display pending messages */ + chat_add_logs (chat); } static void -- 1.8.5.2