Skip to content

Commit

Permalink
Merge branch 'hotfix-2.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Adonis Peralta committed Feb 23, 2018
2 parents ace0a8f + c5acf85 commit 15ac53d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RMessage.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

Pod::Spec.new do |s|
s.name = "RMessage"
s.version = "2.2.0"
s.version = "2.2.1"
s.summary = "Easy to use and customizable messages/notifications for iOS"
s.description = <<-DESC
This framework provides an easy to use class to show little notification views on the top of the screen.
Expand Down
2 changes: 1 addition & 1 deletion RMessage/RMessageView.m
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ - (void)present
- (void)layoutMessageForPresentation
{
_titleSubtitleContainerViewTopConstraint.constant = 10.f;
CGFloat statusBarHeight = statusBarHeight = [self.viewController prefersStatusBarHidden] ? 0.f : ([UIApplication sharedApplication].statusBarFrame.size.height / 2.f);
CGFloat statusBarHeight = statusBarHeight = [self.viewController prefersStatusBarHidden] ? 0.f : ([UIApplication sharedApplication].statusBarFrame.size.height);

UINavigationController *messageNavigationController = [self rootNavigationController];

Expand Down

0 comments on commit 15ac53d

Please sign in to comment.