From 990d4f2fd2a46b172b60c6c0f7d4f3fa77281494 Mon Sep 17 00:00:00 2001 From: Chandan <52043879+chandan-0@users.noreply.github.com> Date: Mon, 19 Feb 2024 12:43:39 +0530 Subject: [PATCH] Update DropDownCell.swift --- DropDown/src/DropDownCell.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DropDown/src/DropDownCell.swift b/DropDown/src/DropDownCell.swift index bf49947..1328a3b 100644 --- a/DropDown/src/DropDownCell.swift +++ b/DropDown/src/DropDownCell.swift @@ -54,10 +54,10 @@ extension DropDownCell { if let selectedBackgroundColor = self.selectedBackgroundColor { if selected { self.backgroundColor = selectedBackgroundColor - self.optionLabel.textColor = self.highlightTextColor + // self.optionLabel.textColor = self.highlightTextColor } else { self.backgroundColor = .clear - self.optionLabel.textColor = self.normalTextColor + // self.optionLabel.textColor = self.normalTextColor } } }