From 333030e2be91b70fd8125c2e86574d8c7412928a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Sun, 10 Sep 2023 13:03:48 +0200 Subject: [PATCH] Make the call buttons 44px wide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- NextcloudTalk/NCChatViewController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NextcloudTalk/NCChatViewController.m b/NextcloudTalk/NCChatViewController.m index 1522b4804..96def2498 100644 --- a/NextcloudTalk/NCChatViewController.m +++ b/NextcloudTalk/NCChatViewController.m @@ -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];