From 5c85bf2e5d21a432910a2fa20e92327602c60be3 Mon Sep 17 00:00:00 2001 From: Anton Popkov Date: Fri, 13 Oct 2017 15:01:20 +0300 Subject: [PATCH] EmptyCell default appearance fix --- Sources/Classes/Views/EmptyCell/EmptyCell.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/Classes/Views/EmptyCell/EmptyCell.swift b/Sources/Classes/Views/EmptyCell/EmptyCell.swift index 1d6bae33..c0cca1b8 100644 --- a/Sources/Classes/Views/EmptyCell/EmptyCell.swift +++ b/Sources/Classes/Views/EmptyCell/EmptyCell.swift @@ -53,5 +53,7 @@ public final class EmptyCell: SeparatorCell, AppearanceProtocol, ConfigurableCel private func setup() { backgroundColor = .clear selectionStyle = .none + + configure(appearance: Appearance()) } }