about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-12-11 13:53:52 +0100
committerGitHub <noreply@github.com>2020-12-11 13:53:52 +0100
commitddda72c2c44b0b551b0fa88616487a9881a1a4d7 (patch)
tree616a5e7b8dd7505d3963e3ab5df58b19c090c57f /src
parent46e938b638114dd979656badecb99acbdf65cd4a (diff)
parent63843342c3f03f15ad08f6189ea073ec56e76256 (diff)
downloadprofani-tty-ddda72c2c44b0b551b0fa88616487a9881a1a4d7.tar.gz
Merge pull request #1456 from profanity-im/fix/1441-thememe
Fix color for win_print_outgoing()
Diffstat (limited to 'src')
-rw-r--r--src/ui/window.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 559676af..8785edd9 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -1213,8 +1213,7 @@ win_print_outgoing(ProfWin* window, const char* show_char, const char* const id,
     if (replace_id) {
         _win_correct(window, message, id, replace_id, myjid);
     } else {
-        //TODO my jid
-        _win_printf(window, show_char, 0, timestamp, 0, THEME_TEXT_THEM, "me", myjid, id, "%s", message);
+        _win_printf(window, show_char, 0, timestamp, 0, THEME_TEXT_ME, "me", myjid, id, "%s", message);
     }
 
     inp_nonblocking(TRUE);