Skip to content
This repository has been archived by the owner on Jul 3, 2021. It is now read-only.

dismiss issue fix #41

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Sources/StereoViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,10 @@ open class StereoViewController: UIViewController, SceneLoadable {
if let handler = closeButtonHandler {
handler(sender)
} else if sender.allTargets.count == 1 {
presentingViewController?.dismiss(animated: true, completion: nil)
// dismiss it from naviagation if it's presented from it, otherwise dismiss modally
if navigationController?.popViewController(animated: true) == nil {
dismiss(animated: true, completion: nil)
}
}
}

Expand Down