From 1e70e49be038ef49c8e5922884a328be9c287160 Mon Sep 17 00:00:00 2001 From: Pete Smith Date: Tue, 2 Oct 2018 12:20:39 +0100 Subject: [PATCH] Undo unintentional changes --- ScalingCarousel/Classes/ScalingCarouselCell.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ScalingCarousel/Classes/ScalingCarouselCell.swift b/ScalingCarousel/Classes/ScalingCarouselCell.swift index ea20e97..43766ae 100644 --- a/ScalingCarousel/Classes/ScalingCarouselCell.swift +++ b/ScalingCarousel/Classes/ScalingCarouselCell.swift @@ -23,11 +23,11 @@ open class ScalingCarouselCell: UICollectionViewCell { // MARK: - Properties (Public) /// The minimum value to scale to, should be set between 0 and 1 - open var scaleMinimum: CGFloat = 0.7 + open var scaleMinimum: CGFloat = 0.9 /// Divisior used when calculating the scale value. /// Lower values cause a greater difference in scale between subsequent cells. - open var scaleDivisor: CGFloat = 8.0 + open var scaleDivisor: CGFloat = 10.0 /// The minimum value to alpha to, should be set between 0 and 1 open var alphaMinimum: CGFloat = 0.85