mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-20 08:32:53 +02:00
Made data in cryptography info copyable.
This commit is contained in:
@@ -2132,12 +2132,15 @@ typedef void (^blockSettingsViewController_onReadyToDestroy)();
|
||||
{
|
||||
if (row == CRYPTOGRAPHY_INFO_INDEX)
|
||||
{
|
||||
MXKTableViewCell *cryptoCell = [self getDefaultTableViewCell:tableView];
|
||||
|
||||
cryptoCell.textLabel.attributedText = [self cryptographyInformation];
|
||||
cryptoCell.textLabel.numberOfLines = 0;
|
||||
MXKTableViewCellWithTextView *cryptoCell = [tableView dequeueReusableCellWithIdentifier:[MXKTableViewCellWithTextView defaultReuseIdentifier]];
|
||||
if (!cryptoCell)
|
||||
{
|
||||
cryptoCell = [[MXKTableViewCellWithTextView alloc] init];
|
||||
}
|
||||
|
||||
cryptoCell.selectionStyle = UITableViewCellSelectionStyleNone;
|
||||
cryptoCell.mxkTextView.attributedText = [self cryptographyInformation];
|
||||
cryptoCell.mxkTextViewLeadingConstraint.constant = cell.separatorInset.left;
|
||||
cryptoCell.mxkTextViewTrailingConstraint.constant = cell.separatorInset.right;
|
||||
|
||||
cell = cryptoCell;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user