From b557adcf50f8a84424414a88cc129ecadb185057 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Wed, 7 Aug 2013 16:39:02 +0200 Subject: [PATCH] use the user_action_time received from TP when presenting existing call window https://bugzilla.gnome.org/show_bug.cgi?id=705618 --- src/empathy-call-window.c | 7 +++++-- src/empathy-call-window.h | 4 +++- src/empathy-call.c | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 711badfc..03c9efb6 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -2455,11 +2455,14 @@ empathy_call_window_new (EmpathyCallHandler *handler) void empathy_call_window_new_handler (EmpathyCallWindow *self, - EmpathyCallHandler *handler) + EmpathyCallHandler *handler, + gboolean present, + guint32 x11_time) { g_return_if_fail (EMPATHY_IS_CALL_HANDLER (handler)); - empathy_window_present (GTK_WINDOW (self)); + if (present) + empathy_window_present_with_time (GTK_WINDOW (self), x11_time); if (self->priv->call_state == DISCONNECTED) { diff --git a/src/empathy-call-window.h b/src/empathy-call-window.h index 666071fc..ad7b1f26 100644 --- a/src/empathy-call-window.h +++ b/src/empathy-call-window.h @@ -63,7 +63,9 @@ GType empathy_call_window_get_type (void); EmpathyCallWindow *empathy_call_window_new (EmpathyCallHandler *handler); void empathy_call_window_new_handler (EmpathyCallWindow *window, - EmpathyCallHandler *handler); + EmpathyCallHandler *handler, + gboolean present, + guint32 x11_time); void empathy_call_window_start_ringing (EmpathyCallWindow *self, TpCallChannel *channel, TpChannelDispatchOperation *dispatch_operation, diff --git a/src/empathy-call.c b/src/empathy-call.c index 4c27a950..2b944552 100644 --- a/src/empathy-call.c +++ b/src/empathy-call.c @@ -146,7 +146,7 @@ new_call_handler_cb (EmpathyCallFactory *factory, if (window != NULL) { - empathy_call_window_new_handler (window, handler); + empathy_call_window_new_handler (window, handler, present, x11_time); } else { -- 2.39.2