diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-03-04 01:34:03 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-03-04 01:34:03 +0800 |
commit | 74974f48ea36df853098259d25727317b1048ffd (patch) | |
tree | 3e8afa987c8e7a40399557e560a4c40839652772 /src/empathy-call-window.c | |
parent | ba7eae326c9cd3e12447bf636cedfae6284b2581 (diff) | |
download | gsoc2013-empathy-74974f48ea36df853098259d25727317b1048ffd.tar gsoc2013-empathy-74974f48ea36df853098259d25727317b1048ffd.tar.gz gsoc2013-empathy-74974f48ea36df853098259d25727317b1048ffd.tar.bz2 gsoc2013-empathy-74974f48ea36df853098259d25727317b1048ffd.tar.lz gsoc2013-empathy-74974f48ea36df853098259d25727317b1048ffd.tar.xz gsoc2013-empathy-74974f48ea36df853098259d25727317b1048ffd.tar.zst gsoc2013-empathy-74974f48ea36df853098259d25727317b1048ffd.zip |
Ensure to always call gtk/gdk functions while holding the gdk lock
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2550
Diffstat (limited to 'src/empathy-call-window.c')
-rw-r--r-- | src/empathy-call-window.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 333b1257c..a565be90a 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -564,6 +564,8 @@ empathy_call_window_src_added_cb (EmpathyCallHandler *handler, g_object_get (priv->handler, "tp-call", &call, NULL); + gdk_threads_enter (); + if (empathy_tp_call_has_dtmf (call)) gtk_widget_set_sensitive (priv->dtmf_panel, TRUE); @@ -574,6 +576,8 @@ empathy_call_window_src_added_cb (EmpathyCallHandler *handler, empathy_call_window_status_message (self, str); g_free (str); + gdk_threads_leave (); + switch (media_type) { case TP_MEDIA_STREAM_TYPE_AUDIO: |