mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-01 05:36:57 +02:00
BugFix: Room member details: only the "start chat" text is clickable, not that whole button area.
https://github.com/vector-im/vector-ios/issues/282
This commit is contained in:
@@ -501,6 +501,19 @@
|
||||
return cell;
|
||||
}
|
||||
|
||||
#pragma mark - TableView delegate
|
||||
|
||||
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
|
||||
{
|
||||
UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
|
||||
if (selectedCell && [selectedCell isKindOfClass:TableViewCellWithButton.class])
|
||||
{
|
||||
TableViewCellWithButton *cell = (TableViewCellWithButton*)selectedCell;
|
||||
|
||||
[self onActionButtonPressed:cell.mxkButton];
|
||||
}
|
||||
}
|
||||
|
||||
#pragma mark - Action
|
||||
|
||||
- (void)onActionButtonPressed:(id)sender
|
||||
|
||||
Reference in New Issue
Block a user