fix for #1182: show Disabled when it's the one selected
This commit is contained in:
parent
24fcd311df
commit
0bb0fe4157
|
@ -133,7 +133,7 @@ class PreferencesWindow:
|
||||||
if gajim.config.get('emoticons_theme') == l[i]:
|
if gajim.config.get('emoticons_theme') == l[i]:
|
||||||
emoticons_combobox.set_active(i)
|
emoticons_combobox.set_active(i)
|
||||||
if not gajim.config.get('emoticons_theme'):
|
if not gajim.config.get('emoticons_theme'):
|
||||||
emoticons_combobox.set_active(len(l))
|
emoticons_combobox.set_active(len(l)-1)
|
||||||
|
|
||||||
#iconset
|
#iconset
|
||||||
iconsets_list = os.listdir(os.path.join(gajim.DATA_DIR, 'iconsets'))
|
iconsets_list = os.listdir(os.path.join(gajim.DATA_DIR, 'iconsets'))
|
||||||
|
|
Loading…
Reference in New Issue