correct invalid theme name in old config file

This commit is contained in:
Yann Leboulanger 2005-09-02 14:03:00 +00:00
parent 1f36461b97
commit 99f1bf40c5
1 changed files with 3 additions and 0 deletions

View File

@ -1059,6 +1059,9 @@ class Interface:
gajim.config.add_per('statusmsg', msg)
gajim.config.set_per('statusmsg', msg, 'message', gajim.config.statusmsg_default[msg])
#add default themes if there is not in the config file
theme = gajim.config.get('roster_theme')
if not theme in gajim.config.get_per('themes'):
gajim.config.set('roster_theme', 'green')
if len(gajim.config.get_per('themes')) == 0:
d = ['accounttextcolor', 'accountbgcolor', 'accountfont',
'grouptextcolor', 'groupbgcolor', 'groupfont', 'contacttextcolor',