We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab401e commit 3c8b6c7Copy full SHA for 3c8b6c7
ChatSecure/Classes/View Controllers/OTRSettingsViewController.m
@@ -119,6 +119,9 @@ - (void) setupVersionLabel {
119
[versionButton setTitleColor:UIColor.lightGrayColor forState:UIControlStateNormal];
120
[versionButton addTarget:self action:@selector(versionButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
121
[versionButton sizeToFit];
122
+ CGRect frame = versionButton.frame;
123
+ frame.size.height = frame.size.height * 2;
124
+ versionButton.frame = frame;
125
self.tableView.tableFooterView = versionButton;
126
}
127
0 commit comments