Skip to content

Commit

Permalink
Merge pull request #1359 from nextcloud/fix-call-button-size
Browse files Browse the repository at this point in the history
Make the call buttons 44px wide
  • Loading branch information
Ivansss authored Sep 12, 2023
2 parents 9bc57e7 + 333030e commit 6b588e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NextcloudTalk/NCChatViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -786,8 +786,8 @@ - (void)configureActionItems
UIImage *videoCallImage = [UIImage systemImageNamed:@"video" withConfiguration:symbolConfiguration];
UIImage *voiceCallImage = [UIImage systemImageNamed:@"phone" withConfiguration:symbolConfiguration];

CGFloat buttonWidth = 24.0;
CGFloat buttonPadding = 30.0;
CGFloat buttonWidth = 44.0;
CGFloat buttonPadding = 16.0;

_videoCallButton = [[BarButtonItemWithActivity alloc] initWithWidth:buttonWidth withImage:videoCallImage];
[_videoCallButton.innerButton addTarget:self action:@selector(videoCallButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
Expand Down

0 comments on commit 6b588e3

Please sign in to comment.