diff --git a/AltStore/My Apps/MyAppsViewController.swift b/AltStore/My Apps/MyAppsViewController.swift index 8adba52b..4193ad4e 100644 --- a/AltStore/My Apps/MyAppsViewController.swift +++ b/AltStore/My Apps/MyAppsViewController.swift @@ -100,6 +100,12 @@ class MyAppsViewController: UICollectionViewController self.sideloadingProgressView.trailingAnchor.constraint(equalTo: navigationBar.trailingAnchor), self.sideloadingProgressView.bottomAnchor.constraint(equalTo: navigationBar.bottomAnchor)]) } + + if #available(iOS 13, *) {} + else + { + self.registerForPreviewing(with: self, sourceView: self.collectionView) + } } override func viewWillAppear(_ animated: Bool)