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.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.c')
-rw-r--r-- | src/empathy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/empathy.c b/src/empathy.c index 0c1197a17..46b2fdb60 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -555,7 +555,9 @@ main (int argc, char *argv[]) g_signal_connect (G_OBJECT (call_factory), "new-call-handler", G_CALLBACK (new_call_handler_cb), NULL); + gdk_threads_enter (); gtk_main (); + gdk_threads_leave (); empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE); |