This repository was archived by the owner on Jun 17, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ open class PagingViewController: UIViewController {
75
75
76
76
fileprivate func setupContentScrollView( ) {
77
77
contentScrollView. backgroundColor = options. backgroundColor
78
- contentScrollView. isScrollEnabled = options. scrollEnabled
78
+ contentScrollView. isScrollEnabled = options. isScrollEnabled
79
79
view. addSubview ( contentScrollView)
80
80
}
81
81
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import Foundation
11
11
public protocol PagingMenuControllerCustomizable {
12
12
var defaultPage : Int { get }
13
13
var animationDuration : TimeInterval { get }
14
- var scrollEnabled : Bool { get }
14
+ var isScrollEnabled : Bool { get }
15
15
var backgroundColor : UIColor { get }
16
16
var lazyLoadingPage : LazyLoadingPage { get }
17
17
var menuControllerSet : MenuControllerSet { get }
@@ -25,7 +25,7 @@ public extension PagingMenuControllerCustomizable {
25
25
var animationDuration : TimeInterval {
26
26
return 0.3
27
27
}
28
- var scrollEnabled : Bool {
28
+ var isScrollEnabled : Bool {
29
29
return true
30
30
}
31
31
var backgroundColor : UIColor {
You can’t perform that action at this time.
0 commit comments