about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-10-30 22:33:17 +0000
committerJames Booth <boothj5@gmail.com>2012-10-30 22:33:17 +0000
commit7f1e3084b37c20094ee80e6fd63d93c0aa9d1dc9 (patch)
tree70da489f63b7d7da34b9eaf636b17d506aa69939
parentbee708c9d253524d4af3a9d1599300722ff69044 (diff)
parente592a431b7b2dc58bd8af7b7231cea79e6fad3ba (diff)
downloadprofani-tty-7f1e3084b37c20094ee80e6fd63d93c0aa9d1dc9.tar.gz
Merge branch 'master' into chatstates
-rw-r--r--src/windows.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/windows.c b/src/windows.c
index c7e49020..57cebdf5 100644
--- a/src/windows.c
+++ b/src/windows.c
@@ -441,13 +441,13 @@ win_show_outgoing_msg(const char * const from, const char * const to,
 
     _win_show_time(win);
     if (strncmp(message, "/me ", 4) == 0) {
-        wattron(win, COLOUR_ONLINE);
+        wattron(win, COLOUR_INC);
         wprintw(win, "*%s ", from);
         wprintw(win, message + 4);
         wprintw(win, "\n");
-        wattroff(win, COLOUR_ONLINE);
+        wattroff(win, COLOUR_INC);
     } else {
-        _win_show_user(win, from, 1);
+        _win_show_user(win, from, 0);
         _win_show_message(win, message);
     }
     _win_switch_if_active(win_index);