Skip to content

Commit 3c8b6c7

Browse files
Adjust version button size
1 parent 3ab401e commit 3c8b6c7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ChatSecure/Classes/View Controllers/OTRSettingsViewController.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ - (void) setupVersionLabel {
119119
[versionButton setTitleColor:UIColor.lightGrayColor forState:UIControlStateNormal];
120120
[versionButton addTarget:self action:@selector(versionButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
121121
[versionButton sizeToFit];
122+
CGRect frame = versionButton.frame;
123+
frame.size.height = frame.size.height * 2;
124+
versionButton.frame = frame;
122125
self.tableView.tableFooterView = versionButton;
123126
}
124127

0 commit comments

Comments
 (0)