remove spaces
This commit is contained in:
parent
bb6c0d6a26
commit
cc260e3734
10
src/chat.py
10
src/chat.py
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue