fix selection overlay disabling buttons (#2030)

This commit is contained in:
Ryan Nystrom
2018-08-04 17:35:38 -04:00
committed by GitHub
parent 436d4f5939
commit 04fb9cecbd

View File

@@ -15,6 +15,7 @@ extension UIView {
let view = UIView()
view.backgroundColor = Styles.Colors.Gray.alphaLighter
view.alpha = 0
view.isUserInteractionEnabled = false
addSubview(view)
return view
}