1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 17:55:24 -04:00

Changed symbol when participants join or leave a room

This commit is contained in:
James Booth 2013-01-17 23:24:34 +00:00
parent 26840cc384
commit f3fcc892c3

View File

@ -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)