Accent color for personal state text editor

This commit is contained in:
Arnfried Griesert
2022-06-30 04:57:49 +02:00
parent ceb5e337d6
commit b886e3917d
2 changed files with 17 additions and 17 deletions
@@ -1117,8 +1117,8 @@
if (BuildSettings.bwiPersonalState && contact.mxMember.userId) {
MXUser *user = [self.mxRoom.mxSession userWithUserId:contact.mxMember.userId];
participantCell.contactInformationLabel.text = user.displayname;
participantCell.contactInformationLabel.hidden = user.displayname.length > 0;
participantCell.contactInformationLabel.text = user.statusMsg;
participantCell.contactInformationLabel.hidden = user.statusMsg.length <= 0;
}
}
cell = participantCell;