remove spaces

This commit is contained in:
Nikos Kouremenos 2005-09-04 23:57:47 +00:00
parent bb6c0d6a26
commit cc260e3734
1 changed files with 5 additions and 5 deletions

View File

@ -186,8 +186,8 @@ class Chat:
if unread and chatstate == 'active': if unread and chatstate == 'active':
color = gajim.config.get_per('themes', theme, color = gajim.config.get_per('themes', theme,
'state_unread_color') 'state_unread_color')
elif chatstate is not None: elif chatstate is not None:
if chatstate == 'composing': if chatstate == 'composing':
color = gajim.config.get_per('themes', theme, color = gajim.config.get_per('themes', theme,
'state_composing_color') 'state_composing_color')
elif unread and self.has_focus: elif unread and self.has_focus:
@ -196,13 +196,13 @@ class Chat:
elif unread: elif unread:
color = gajim.config.get_per('themes', theme, color = gajim.config.get_per('themes', theme,
'state_unread_color') 'state_unread_color')
elif chatstate == 'inactive': elif chatstate == 'inactive':
color = gajim.config.get_per('themes', theme, color = gajim.config.get_per('themes', theme,
'state_inactive_color') 'state_inactive_color')
elif chatstate == 'gone': elif chatstate == 'gone':
color = gajim.config.get_per('themes', theme, color = gajim.config.get_per('themes', theme,
'state_gone_color') 'state_gone_color')
elif chatstate == 'paused': elif chatstate == 'paused':
color = gajim.config.get_per('themes', theme, color = gajim.config.get_per('themes', theme,
'state_paused_color') 'state_paused_color')
else: else: