improve XEP-184 mark colors. see #7476

This commit is contained in:
Yann Leboulanger 2013-11-30 10:04:50 +01:00
parent 395f9575c8
commit 90847091c5
1 changed files with 2 additions and 2 deletions

View File

@ -311,10 +311,10 @@ class ConversationTextview(GObject.GObject):
self.displaymarking_tags = {}
tag = buffer_.create_tag('xep0184-warning')
tag.set_property('foreground', 'red')
tag.set_property('foreground', '#cc0000')
tag = buffer_.create_tag('xep0184-received')
tag.set_property('foreground', 'green')
tag.set_property('foreground', '#73d216')
# One mark at the begining then 2 marks between each lines
size = gajim.config.get('max_conversation_lines')