Skip to content

Commit

Permalink
Change Y position instead of frame height
Browse files Browse the repository at this point in the history
  • Loading branch information
digdog committed Mar 7, 2011
1 parent 7532142 commit e3517fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UIDickBar.m
Expand Up @@ -169,7 +169,7 @@ - (void)updateDickTitle:(NSString *)title dickBadge:(NSString *)badge actionBloc
- (void)showInView:(UIView *)view
{
if (view) {
self.frame = CGRectMake(0.0f, 0.0f, view.frame.size.width, 0.0f);
self.frame = CGRectMake(0.0f, -44.0f, view.frame.size.width, 44.0f);

if (self.superview) {
[self removeFromSuperview];
Expand Down

0 comments on commit e3517fc

Please sign in to comment.