NanoTech

Fix auth dialog table view padding on iPad.

@@ -271,9 +271,14 @@ static const NSUInteger kDomainSection = 1; @@ -271,9 +271,14 @@ static const NSUInteger kDomainSection = 1;
271 return 0; 271 return 0;
272 } 272 }
273 273
274 -- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section 274 +- (CGFloat)tableView:(UITableView *)aTableView heightForHeaderInSection:(NSInteger)section
275 { 275 {
276 if (section == 0) { 276 if (section == 0) {
  277 +#if __IPHONE_3_2 && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2
  278 + if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
  279 + return 54;
  280 + }
  281 +#endif
277 return 30; 282 return 30;
278 } 283 }
279 return 0; 284 return 0;