about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-01-17 23:24:34 +0000
committerJames Booth <boothj5@gmail.com>2013-01-17 23:24:34 +0000
commitf3fcc892c3ad810599df298ec70c16fd5764a9c2 (patch)
tree6799ae3208ee0845a262e7befd06353077ba9d2c
parent26840cc38494c5e22220e6ac819715efbc471af8 (diff)
downloadprofani-tty-f3fcc892c3ad810599df298ec70c16fd5764a9c2.tar.gz
Changed symbol when participants join or leave a room
-rw-r--r--src/windows.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows.c b/src/windows.c
index e26ee37c..32b48fb8 100644
--- a/src/windows.c
+++ b/src/windows.c
@@ -894,7 +894,7 @@ win_show_room_member_offline(const char * const room, const char * const nick)
 
     _win_show_time(win, '!');
     wattron(win, COLOUR_OFFLINE);
-    wprintw(win, "-- %s has left the room.\n", nick);
+    wprintw(win, "<- %s has left the room.\n", nick);
     wattroff(win, COLOUR_OFFLINE);
 
     if (win_index == current_index)
@@ -910,7 +910,7 @@ win_show_room_member_online(const char * const room, const char * const nick,
 
     _win_show_time(win, '!');
     wattron(win, COLOUR_ONLINE);
-    wprintw(win, "++ %s has joined the room.\n", nick);
+    wprintw(win, "-> %s has joined the room.\n", nick);
     wattroff(win, COLOUR_ONLINE);
 
     if (win_index == current_index)