From 1a43498c2e9422431c00777c1549a4d1d4d61e51 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Tue, 27 Nov 2018 13:58:27 -0700 Subject: [PATCH] update masks for "always dark" media views --- Signal/src/views/PhotoGridViewCell.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/views/PhotoGridViewCell.swift b/Signal/src/views/PhotoGridViewCell.swift index fdc486914..d7faa0762 100644 --- a/Signal/src/views/PhotoGridViewCell.swift +++ b/Signal/src/views/PhotoGridViewCell.swift @@ -57,12 +57,12 @@ public class PhotoGridViewCell: UICollectionViewCell { self.highlightedView = UIView() highlightedView.alpha = 0.2 - highlightedView.backgroundColor = Theme.primaryColor + highlightedView.backgroundColor = Theme.darkThemePrimaryColor highlightedView.isHidden = true self.selectedView = UIView() selectedView.alpha = 0.3 - selectedView.backgroundColor = Theme.backgroundColor + selectedView.backgroundColor = Theme.darkThemeBackgroundColor selectedView.isHidden = true super.init(frame: frame)