Theme: Update disclosure indicator with theme color.

This commit is contained in:
SBiOSoftWhare
2020-07-16 23:16:11 +02:00
parent db84811ef8
commit 3a5c549607
13 changed files with 32 additions and 27 deletions
@@ -1010,7 +1010,7 @@ SecureBackupSetupCoordinatorBridgePresenterDelegate>
NSString *deviceId = device.deviceId;
cell.textLabel.text = (name.length ? [NSString stringWithFormat:@"%@ (%@)", name, deviceId] : [NSString stringWithFormat:@"(%@)", deviceId]);
cell.textLabel.numberOfLines = 0;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
[cell vc_setAccessoryDisclosureIndicatorWithCurrentTheme];
if ([deviceId isEqualToString:self.mainSession.matrixRestClient.credentials.deviceId])
{
@@ -1206,7 +1206,7 @@ SecureBackupSetupCoordinatorBridgePresenterDelegate>
{
MXKTableViewCellWithTextView *textCell = [self textViewCellForTableView:tableView atIndexPath:indexPath];
textCell.mxkTextView.text = @"Advanced: Manually manage keys"; // TODO
textCell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
[textCell vc_setAccessoryDisclosureIndicatorWithCurrentTheme];
cell = textCell;
break;