16x16 folder in iconset is required, not 32x32. Fixes #2450

This commit is contained in:
Yann Leboulanger 2006-09-25 07:21:30 +00:00
parent be61788f24
commit e4cda079e3
1 changed files with 1 additions and 1 deletions

View File

@ -3142,7 +3142,7 @@ _('If "%s" accepts this request you will know his or her status.') % jid)
'''initialise jabber_state_images dict'''
iconset = gajim.config.get('iconset')
if iconset:
path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '32x32')
path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16')
if not os.path.exists(path):
iconset = DEFAULT_ICONSET
else: