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 3317d49 commit 5002b37Copy full SHA for 5002b37
WooCommerce/Classes/Extensions/UIViewController+Navigation.swift
@@ -6,9 +6,7 @@ extension UIViewController {
6
/// A VC added to an existing navigation controller is dismissed when `isMovingFromParent` is `true`.
7
/// For any other scenario `isBeingDismissed` will do.
8
var isBeingDismissedInAnyWay: Bool {
9
- isMovingFromParent ||
10
- isBeingDismissed ||
11
- navigationController?.isBeingDismissed == true
+ isMovingFromParent || isBeingDismissed || navigationController?.isBeingDismissed == true
12
}
13
14
/// Async/await version of the UIKit `dismiss(animated:)`.
0 commit comments