forked from shadowfacts/Tusker
visionOS: Remove trends loading indicator highlight
This commit is contained in:
parent
c0301ce7e7
commit
53302e3b26
|
@ -584,6 +584,12 @@ extension TrendsViewController: UICollectionViewDelegate {
|
|||
func collectionView(_ collectionView: UICollectionView, contextMenuConfiguration configuration: UIContextMenuConfiguration, dismissalPreviewForItemAt indexPath: IndexPath) -> UITargetedPreview? {
|
||||
return self.collectionView(collectionView, contextMenuConfiguration: configuration, highlightPreviewForItemAt: indexPath)
|
||||
}
|
||||
|
||||
#if os(visionOS)
|
||||
func collectionView(_ collectionView: UICollectionView, shouldHighlightItemAt indexPath: IndexPath) -> Bool {
|
||||
return self.collectionView(collectionView, shouldSelectItemAt: indexPath)
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
extension TrendsViewController: UICollectionViewDragDelegate {
|
||||
|
|
Loading…
Reference in New Issue