Skip to content

Commit

Permalink
Merge pull request #263 from BlainHamon/TIMOB2324
Browse files Browse the repository at this point in the history
TIMOB-2324 When we're still the top of the navcontroller, keep nav image
  • Loading branch information
rseagraves committed Jul 27, 2011
2 parents 4c86032 + 169cc37 commit ffa46ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion iphone/Classes/TiUIWindowProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,9 @@ -(void)_tabBlur
if (focused)
{
[self fireFocus:NO];
[barImageView removeFromSuperview];
if ([navController topViewController] != controller) {
[barImageView removeFromSuperview];
}
}
[super _tabBlur];
}
Expand Down

0 comments on commit ffa46ec

Please sign in to comment.