From 7016af459f2452cc1c05253cc98df5d9693a577d Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Thu, 8 Sep 2005 10:30:32 +0000 Subject: [PATCH] xmpp and xmpp:// is catched in GNOME now if gajim is running --- src/gajim.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gajim.py b/src/gajim.py index bab5d71e6..cc561e402 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -1243,7 +1243,9 @@ if __name__ == '__main__': command = path_to_gajim_script + ' open_chat %s' else: # 'installed' command = 'gajim-remote open_chat %s' + client.set_bool('/desktop/gnome/url-handlers/xmpp/enabled', True) client.set_string('/desktop/gnome/url-handlers/xmpp/command', command) + client.set_bool('/desktop/gnome/url-handlers/xmpp/needs_terminal', False) Interface() gtk.main()