Skip to content

Commit

Permalink
Merge branch 'screen-fades-to-black-ios-316'
Browse files Browse the repository at this point in the history
  • Loading branch information
buggmagnet committed Sep 25, 2023
2 parents 4dc2a35 + 622020b commit e2b50fb
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ class RedeemVoucherViewController: UIViewController, UINavigationControllerDeleg
) {
self.contentView = RedeemVoucherContentView(configuration: configuration)
self.interactor = interactor
self.contentView.isUserInteractionEnabled = false

super.init(nibName: nil, bundle: nil)
}

Expand Down Expand Up @@ -67,6 +69,8 @@ class RedeemVoucherViewController: UIViewController, UINavigationControllerDeleg

override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)

contentView.isUserInteractionEnabled = true
contentView.isEditing = true
}

Expand Down

0 comments on commit e2b50fb

Please sign in to comment.