Merge pull request #256 from phamnhuvu-dev/master
fix scrollbar on iOS always show if not disable scroll
This commit is contained in:
commit
ece4d8186f
@ -1050,11 +1050,12 @@ public class InAppWebView: WKWebView, UIScrollViewDelegate, WKUIDelegate, WKNavi
|
||||
// Fallback on earlier versions
|
||||
}
|
||||
|
||||
scrollView.showsVerticalScrollIndicator = (options?.verticalScrollBarEnabled)!
|
||||
scrollView.showsHorizontalScrollIndicator = (options?.horizontalScrollBarEnabled)!
|
||||
scrollView.showsVerticalScrollIndicator = !(options?.disableVerticalScroll)!
|
||||
scrollView.showsHorizontalScrollIndicator = !(options?.disableHorizontalScroll)!
|
||||
|
||||
scrollView.showsVerticalScrollIndicator = (options?.verticalScrollBarEnabled)!
|
||||
scrollView.showsHorizontalScrollIndicator = (options?.horizontalScrollBarEnabled)!
|
||||
|
||||
// options.debuggingEnabled is always enabled for iOS.
|
||||
|
||||
if (options?.clearCache)! {
|
||||
|
Loading…
x
Reference in New Issue
Block a user