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

change tab names: prompt = home, friends = contacts

This commit is contained in:
Jfreegman
2014-07-13 15:34:09 -04:00
parent ee67cf0bf1
commit 190e1e73e8
5 changed files with 12 additions and 11 deletions

View File

@ -377,7 +377,7 @@ static void friendlist_onDraw(ToxWindow *self, Tox *m)
wattron(self->window, A_BOLD);
wprintw(self->window, " Enter ");
wattroff(self->window, A_BOLD);
wprintw(self->window, "key. Delete a friend with the");
wprintw(self->window, "key. Delete a contact with the");
wattron(self->window, A_BOLD);
wprintw(self->window, " Delete ");
wattroff(self->window, A_BOLD);
@ -614,6 +614,6 @@ ToxWindow new_friendlist(void)
ret.device_selection[0] = ret.device_selection[1] = -1;
#endif /* _SUPPORT_AUDIO */
strcpy(ret.name, "friends");
strcpy(ret.name, "contacts");
return ret;
}