[empathy/gnome-2-30] chat-window: don't present chat if notification has been dismissed



commit fd845a984220e1004ad93c56bec771c7a14a8c3f
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Wed Apr 7 11:08:45 2010 +0200

    chat-window: don't present chat if notification has been dismissed
    
    Clicking on a notification mean 'please go away'. If user wants to approve the
    action he has to click on the 'Reply' button.
    
    This code was broken anyway so we don't change the current behaviour.

 src/empathy-chat-window.c |    8 --------
 1 files changed, 0 insertions(+), 8 deletions(-)
---
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 302aa3a..d1a0c8f 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -1199,16 +1199,8 @@ static void
 chat_window_notification_closed_cb (NotifyNotification *notify,
 				    NotificationData *cb_data)
 {
-	EmpathyNotificationClosedReason reason = 0;
 	EmpathyChatWindowPriv *priv = GET_PRIV (cb_data->window);
 
-#ifdef notify_notification_get_closed_reason
-	reason = notify_notification_get_closed_reason (notify);
-#endif
-	if (reason == EMPATHY_NOTIFICATION_CLOSED_DISMISSED) {
-		empathy_chat_window_present_chat (cb_data->chat);
-	}
-
 	g_object_unref (notify);
 	priv->notification = NULL;
 	free_notification_data (cb_data);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]