mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
add nooffline option to roster
This commit is contained in:
parent
0f2035e4ad
commit
a980fbe0bd
@ -1345,6 +1345,12 @@ cmd_roster(gchar **args, struct cmd_help_t help)
|
|||||||
cons_show_roster(list);
|
cons_show_roster(list);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
// show roster, no offline contacts
|
||||||
|
} else if(g_strcmp0(args[0], "nooffline") == 0){
|
||||||
|
GSList *list = roster_get_contacts_nooffline();
|
||||||
|
cons_show_roster(list);
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
// set roster size
|
// set roster size
|
||||||
} else if (g_strcmp0(args[0], "size") == 0) {
|
} else if (g_strcmp0(args[0], "size") == 0) {
|
||||||
int intval = 0;
|
int intval = 0;
|
||||||
@ -4041,4 +4047,3 @@ gint _compare_commands(Command *a, Command *b)
|
|||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user