From f3bb07cc521c2fbc88ee788e42b90b0c3176f9a3 Mon Sep 17 00:00:00 2001 From: Tomas Friml Date: Wed, 22 May 2019 21:00:26 +1200 Subject: [PATCH] Fix for cell spacing --- CollectionPickerView/Classes/CollectionPickerView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CollectionPickerView/Classes/CollectionPickerView.swift b/CollectionPickerView/Classes/CollectionPickerView.swift index 1af587a..525221b 100644 --- a/CollectionPickerView/Classes/CollectionPickerView.swift +++ b/CollectionPickerView/Classes/CollectionPickerView.swift @@ -427,6 +427,6 @@ extension CollectionPickerView: UICollectionViewDelegateFlowLayout { } public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat { - return 0 + return cellSpacing } }