16x16 folder in iconset is required, not 32x32. Fixes #2450
This commit is contained in:
parent
be61788f24
commit
e4cda079e3
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue