Added /roster char contact

This commit is contained in:
James Booth
2015-11-20 00:06:46 +00:00
parent 3f18c8c35d
commit 16fbdedceb
10 changed files with 83 additions and 0 deletions

View File

@@ -1242,6 +1242,18 @@ cons_roster_setting(void)
int size = prefs_get_roster_size();
cons_show("Roster size (/roster) : %d", size);
char header_ch = prefs_get_roster_header_char();
if (header_ch)
cons_show("Roster header char (/roster) : %c", header_ch);
else
cons_show("Roster header char (/roster) : none");
char contact_ch = prefs_get_roster_contact_char();
if (contact_ch)
cons_show("Roster contact char (/roster) : %c", contact_ch);
else
cons_show("Roster contact char (/roster) : none");
}
void