Skip to content

Commit

Permalink
Fixed blur style for iOS17 preset.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanvorobei committed Oct 17, 2023
1 parent 1a3805c commit 30228c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SPAlert.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'SPAlert'
s.version = '5.1.2'
s.version = '5.1.4'
s.summary = 'Native alert from Apple Music & Feedback. Contains Done, Heart & Message and other presets. Support SwiftUI.'
s.homepage = 'https://github.com/sparrowcode/AlertKit'
s.source = { :git => 'https://github.com/sparrowcode/AlertKit.git', :tag => s.version }
Expand Down
2 changes: 1 addition & 1 deletion Sources/AlertKit/Views/AlertAppleMusic17View.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class AlertAppleMusic17View: UIView, AlertViewProtocol {
hostView.isUserInteractionEnabled = false
return hostView
#else
let view = UIVisualEffectView(effect: UIBlurEffect())
let view = UIVisualEffectView(effect: UIBlurEffect(style: .systemMaterial))
view.isUserInteractionEnabled = false
return view
#endif
Expand Down

0 comments on commit 30228c3

Please sign in to comment.