mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
InCallView: taller call rows
This commit is contained in:
parent
c422fd43b1
commit
e6ecdc71a3
1 changed files with 7 additions and 7 deletions
|
|
@ -121,6 +121,9 @@ int callCount(LinphoneCore* lc) {
|
|||
mIncallViewIsReady=FALSE;
|
||||
mVideoIsPending=FALSE;
|
||||
//selectedCall = nil;
|
||||
|
||||
callTableView.rowHeight = 80;
|
||||
|
||||
}
|
||||
|
||||
-(void) addCallPressed {
|
||||
|
|
@ -159,8 +162,6 @@ int callCount(LinphoneCore* lc) {
|
|||
}
|
||||
|
||||
-(void) viewWillAppear:(BOOL)animated {
|
||||
|
||||
|
||||
}
|
||||
-(void)viewDidAppear:(BOOL)animated {
|
||||
[super viewDidAppear:animated];
|
||||
|
|
@ -201,11 +202,7 @@ int callCount(LinphoneCore* lc) {
|
|||
[addVideo setHidden:TRUE];
|
||||
[contacts setHidden:FALSE];
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
} }
|
||||
}
|
||||
|
||||
- (void) viewDidDisappear:(BOOL)animated {
|
||||
|
|
@ -566,6 +563,9 @@ int callCount(LinphoneCore* lc) {
|
|||
if (cell == nil) {
|
||||
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"MyIdentifier"] autorelease];
|
||||
cell.selectionStyle = UITableViewCellSelectionStyleNone;
|
||||
|
||||
cell.textLabel.font = [UIFont systemFontOfSize:40];
|
||||
cell.textLabel.autoresizingMask = UIViewAutoresizingFlexibleHeight;
|
||||
}
|
||||
|
||||
LinphoneCore* lc = [LinphoneManager getLc];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue