Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
asi-http-request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
NanoTech
2010-06-17 15:03:09 -0600
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2115a810227a59c1d5c3c599e98cb82db3831470
2115a810
1 parent
0a50f318
Fix auth dialog table view padding on iPad.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
Classes/ASIAuthenticationDialog.m
Classes/ASIAuthenticationDialog.m
View file @
2115a81
...
...
@@ -271,9 +271,14 @@ static const NSUInteger kDomainSection = 1;
return
0
;
}
-
(
CGFloat
)
tableView
:
(
UITableView
*
)
t
ableView
heightForHeaderInSection
:
(
NSInteger
)
section
-
(
CGFloat
)
tableView
:
(
UITableView
*
)
aT
ableView
heightForHeaderInSection
:
(
NSInteger
)
section
{
if
(
section
==
0
)
{
#if __IPHONE_3_2 && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2
if
(
UI_USER_INTERFACE_IDIOM
()
==
UIUserInterfaceIdiomPad
)
{
return
54
;
}
#endif
return
30
;
}
return
0
;
...
...
Please
register
or
login
to post a comment