Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Update code of the previous pull request to be consistant with the co…
Browse files Browse the repository at this point in the history
…ding style.
  • Loading branch information
Sébastien MICHOY committed Aug 6, 2015
1 parent 48b8722 commit b837c00
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# MSSlidingPanelController Changelog
## [1.3.6](https://github.com/SebastienMichoy/MSSlidingPanelController/releases/tag/1.3.6) (Thursday, August 6th, 2015)
### Modify
- License headers and license file updated.
- The status bar is not user interactive anymore. Thanks to [@IvanThomasFr](https://github.com/IvanThomasFr) for his contribution.

## [1.3.5](https://github.com/SebastienMichoy/MSSlidingPanelController/releases/tag/1.3.5) (Sunday, February 8th, 2015)
### Modify
- The README image is loaded from a new location (branch `assets`).
Expand Down
4 changes: 2 additions & 2 deletions MSSlidingPanelController.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |spec|
spec.name = "MSSlidingPanelController"
spec.version = "1.3.5"
spec.version = "1.3.6"

spec.platform = :ios
spec.ios.deployment_target = "7.0"
spec.requires_arc = true
spec.ios.framework = "UIKit"

spec.source = { :git => "https://github.com/SebastienMichoy/MSSlidingPanelController.git", :tag => "1.3.5" }
spec.source = { :git => "https://github.com/SebastienMichoy/MSSlidingPanelController.git", :tag => "1.3.6" }
spec.source_files = 'MSSlidingPanelController/*.{h,m}'
spec.public_header_files = 'MSSlidingPanelController/*.h'
spec.summary = "Integrate easily a sliding panel controller mechanism in your project!"
Expand Down
2 changes: 1 addition & 1 deletion MSSlidingPanelController/MSSlidingPanelController.m
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ - (void)loadView
[self setStatusBarView:[[UIView alloc] initWithFrame:CGRectMake(0, 0, windowSize.width, 20)]];
[[self statusBarView] setBackgroundColor:[self centerViewStatusBarColor]];
[[self statusBarView] setAutoresizingMask:(UIViewAutoresizingFlexibleWidth)];
[self statusBarView].userInteractionEnabled = NO;
[[self statusBarView] setUserInteractionEnabled:NO];

[self setCenterView:[[MSSlidingPanelCenterView alloc] initWithFrame:CGRectMake(0, 0, windowSize.width, windowSize.height)]];
[[self centerView] setSlidingPanelController:self];
Expand Down

0 comments on commit b837c00

Please sign in to comment.