mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Changed symbol when participants join or leave a room
This commit is contained in:
parent
26840cc384
commit
f3fcc892c3
@ -894,7 +894,7 @@ win_show_room_member_offline(const char * const room, const char * const nick)
|
|||||||
|
|
||||||
_win_show_time(win, '!');
|
_win_show_time(win, '!');
|
||||||
wattron(win, COLOUR_OFFLINE);
|
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);
|
wattroff(win, COLOUR_OFFLINE);
|
||||||
|
|
||||||
if (win_index == current_index)
|
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, '!');
|
_win_show_time(win, '!');
|
||||||
wattron(win, COLOUR_ONLINE);
|
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);
|
wattroff(win, COLOUR_ONLINE);
|
||||||
|
|
||||||
if (win_index == current_index)
|
if (win_index == current_index)
|
||||||
|
Loading…
Reference in New Issue
Block a user