From 25935a2f25953af28ede80ee6dd0d1664f66f98d Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 2 Nov 2008 13:20:12 +0000 Subject: [PATCH] add a default icon in disco window when there is no icon to show. Fixes #4442 --- src/disco.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/disco.py b/src/disco.py index 2557b84bc..5abc0818b 100644 --- a/src/disco.py +++ b/src/disco.py @@ -271,7 +271,7 @@ class ServicesCache: info = _agent_type_info[(0, 0)] filename = info[1] if not filename: # we don't have an image to show for this type - return + filename = 'jabber.png' # Use the cache if possible if filename in _icon_cache: return _icon_cache[filename]