From 5999b71c416f02dc11803bf52a406b9109ddc3c1 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 27 Apr 2014 16:32:03 +0200 Subject: Fix #2106 (implement message delivery receipts) - two options request/ack_message_receipts - two new theme parameters : CHAR_ACK_RECEIVED and COLOR_CHAR_ACK - if a message has a receipt, the character is displayed between the timestamp and the nick, using the color --- src/theming.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/theming.py') diff --git a/src/theming.py b/src/theming.py index 71ed760c..093fa553 100644 --- a/src/theming.py +++ b/src/theming.py @@ -301,6 +301,7 @@ class Theme(object): CHAR_QUIT = '<---' CHAR_KICK = '-!-' CHAR_NEW_TEXT_SEPARATOR = '- ' + CHAR_ACK_RECEIVED = '✔' CHAR_COLUMN_ASC = ' ▲' CHAR_COLUMN_DESC = ' ▼' CHAR_ROSTER_ERROR = '✖' @@ -314,6 +315,8 @@ class Theme(object): CHAR_ROSTER_TO = '→' CHAR_ROSTER_NONE = '⇹' + COLOR_CHAR_ACK = (2, -1) + COLOR_ROSTER_GAMING = (6, -1) COLOR_ROSTER_MOOD = (2, -1) COLOR_ROSTER_ACTIVITY = (3, -1) -- cgit v1.2.3