Skip to content

Commit

Permalink
Fixes bottom toolbar hidden on iPad
Browse files Browse the repository at this point in the history
  • Loading branch information
steventroughtonsmith committed Jun 12, 2016
1 parent f053666 commit 05ba5ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Files/FBColumnNavigationController.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ - (instancetype)initWithRootViewController:(UIViewController <FBColumnViewContro

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(_performPop:)];

[self.navigationBar addGestureRecognizer:tap];
[self.navigationBar addGestureRecognizer:tap];

[self setToolbarHidden:NO];
}
return self;
}
Expand Down

0 comments on commit 05ba5ca

Please sign in to comment.