1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-05 05:56:46 +02:00

change online/offline symbols

This commit is contained in:
Jfreegman
2014-07-26 19:16:07 -04:00
parent 02b192d6ee
commit 3cae1d92cd
5 changed files with 9 additions and 6 deletions

View File

@ -447,7 +447,7 @@ static void friendlist_onDraw(ToxWindow *self, Tox *m)
}
wattron(self->window, COLOR_PAIR(colour) | A_BOLD);
wprintw(self->window, "O ");
wprintw(self->window, "%s ", ONLINE_CHAR);
wattroff(self->window, COLOR_PAIR(colour) | A_BOLD);
if (f_selected)
@ -487,7 +487,7 @@ static void friendlist_onDraw(ToxWindow *self, Tox *m)
wprintw(self->window, "\n");
} else {
wprintw(self->window, "o ");
wprintw(self->window, "%s ", OFFLINE_CHAR);
if (f_selected)
wattron(self->window, COLOR_PAIR(BLUE));