Skip to content
Snippets Groups Projects
Commit 253efc66 authored by deuce's avatar deuce
Browse files

Make deleted users light grey.

parent cd709851
No related branches found
No related tags found
No related merge requests found
......@@ -78,8 +78,11 @@ void SBBS_User_ListFrame::fillUserList(void)
if(!chk_ar(&App->cfg, ars, &user, NULL))
continue;
}
buf.Printf(_("%d"), i);
buf.Printf(_("%d"), user.number);
item=UserList->InsertItem(i, buf, 0);
if(user.misc & DELETED) {
UserList->SetItemTextColour(item, *wxLIGHT_GREY);
}
UserList->SetItem(item, 1, wxString::From8BitData(user.alias));
UserList->SetItem(item, 2, wxString::From8BitData(user.name));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment