about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-03-15 19:35:25 +0000
committerJames Booth <boothj5@gmail.com>2015-03-15 19:35:25 +0000
commitb21edfaa51e1a4e6cbfb22fa501a4c38bb4189b7 (patch)
treea7ddcea96b5472ce857bb76b1c821bfe5dce6b2c /src/ui
parent48e06c5a682ab8a6b82e340ed28f6797c1058a64 (diff)
downloadprofani-tty-b21edfaa51e1a4e6cbfb22fa501a4c38bb4189b7.tar.gz
Added receipt.sent theme setting
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 81408403..4663089f 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -980,7 +980,7 @@ _win_print(ProfWin *window, const char show_char, GDateTime *time,
         }
 
         if (receipt && !receipt->received) {
-            colour = theme_attrs(THEME_BLACK_BOLD);
+            colour = theme_attrs(THEME_RECEIPT_SENT);
         }
 
         wattron(window->layout->win, colour);
@@ -996,7 +996,7 @@ _win_print(ProfWin *window, const char show_char, GDateTime *time,
 
     if (!me_message) {
         if (receipt && !receipt->received) {
-            wattron(window->layout->win, theme_attrs(THEME_BLACK_BOLD));
+            wattron(window->layout->win, theme_attrs(THEME_RECEIPT_SENT));
         } else {
             wattron(window->layout->win, theme_attrs(theme_item));
         }
@@ -1016,7 +1016,7 @@ _win_print(ProfWin *window, const char show_char, GDateTime *time,
         wattroff(window->layout->win, colour);
     } else {
         if (receipt && !receipt->received) {
-            wattroff(window->layout->win, theme_attrs(THEME_BLACK_BOLD));
+            wattroff(window->layout->win, theme_attrs(THEME_RECEIPT_SENT));
         } else {
             wattroff(window->layout->win, theme_attrs(theme_item));
         }