From 69a42c1da56e0efbb457bcca6e4284ab8da34823 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Fri, 6 May 2005 10:26:28 +0000 Subject: [PATCH] roster theme names first letter small --- src/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config.py b/src/config.py index 4780d1c04..c4e43ff44 100644 --- a/src/config.py +++ b/src/config.py @@ -670,7 +670,7 @@ class Preferences_window: # Roster colors / font self.theme_default = { - 'Green': { + 'green': { 'accounttextcolor': '#ffffff', 'grouptextcolor': '#0000ff', 'usertextcolor': '#000000', @@ -681,7 +681,7 @@ class Preferences_window: 'groupfont': 'Sans Italic 10', 'userfont': 'Sans 10', }, - 'Cyan': { + 'cyan': { 'accounttextcolor': '#ff0000', 'grouptextcolor': '#0000ff', 'usertextcolor': '#000000', @@ -706,8 +706,8 @@ class Preferences_window: if gajim.config.get('roster_theme') == t: theme_combobox.set_active(i) i += 1 - model.append(['Custom']) - if gajim.config.get('roster_theme') == 'Custom': + model.append(['custom']) + if gajim.config.get('roster_theme') == 'custom': theme_combobox.set_active(i) self.on_theme_combobox_changed(theme_combobox)