We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d54d4d5 commit a1b3c2eCopy full SHA for a1b3c2e
FlowCrypt/Extensions/UIViewControllerExtensions.swift
@@ -124,6 +124,7 @@ extension UIViewController {
124
// hud is already shown
125
return
126
}
127
+ self.view.isUserInteractionEnabled = isUserInteractionEnabled
128
129
let spinner = MBProgressHUD.showAdded(to: self.view, animated: true)
130
spinner.label.text = message
@@ -136,6 +137,7 @@ extension UIViewController {
136
137
self.view.subviews
138
.compactMap { $0 as? MBProgressHUD }
139
.forEach { $0.hide(animated: true) }
140
+ self.view.isUserInteractionEnabled = true
141
142
143
0 commit comments