Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2006-03-26 22:01:18 +0400
committerYann Leboulanger <asterix@lagaule.org>2006-03-26 22:01:18 +0400
commitc6e6090ef5d7c54948123c650df8c51440ffaf99 (patch)
tree9d132bfb9ee5a66d1097452e7f1cfa014ea22863 /src/gajim_themes_window.py
parenta5d95b47920514ecfc44a5fea3bb3fcfccb905cd (diff)
save correctly chatstate colors.
Diffstat (limited to 'src/gajim_themes_window.py')
-rw-r--r--src/gajim_themes_window.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gajim_themes_window.py b/src/gajim_themes_window.py
index 7b034e962..015ea6816 100644
--- a/src/gajim_themes_window.py
+++ b/src/gajim_themes_window.py
@@ -262,8 +262,11 @@ class GajimThemesWindow:
color_string = gtkgui_helpers.make_color_string(color)
else:
color_string = ''
+ begin_option = ''
+ if not option.startswith('state'):
+ begin_option = self.current_option
gajim.config.set_per('themes', self.current_theme,
- self.current_option + option, color_string)
+ begin_option + option, color_string)
# use faster functions for this
if self.current_option == 'banner':
gajim.interface.roster.repaint_themed_widgets()