We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec809bb + b57cf38 commit 35924deCopy full SHA for 35924de
1 file changed
BlurUIKit/VariableBlurView.swift
@@ -135,6 +135,7 @@ public class VariableBlurView: UIVisualEffectView {
135
private func commonInit() {
136
// Disable interaction so touches will pass through it
137
isUserInteractionEnabled = false
138
+ clipsToBounds = false
139
}
140
141
// MARK: - View Lifecycle
@@ -198,6 +199,7 @@ public class VariableBlurView: UIVisualEffectView {
198
199
let imageView = UIImageView()
200
imageView.tintColor = dimmingTintColor
201
contentView.addSubview(imageView)
202
+ contentView.clipsToBounds = false
203
204
dimmingView = imageView
205
setNeedsUpdate()
0 commit comments