diff --git a/MVMCoreUI/Atoms/Buttons/CaretButton.swift b/MVMCoreUI/Atoms/Buttons/CaretButton.swift index 0849ed26..27076a6a 100644 --- a/MVMCoreUI/Atoms/Buttons/CaretButton.swift +++ b/MVMCoreUI/Atoms/Buttons/CaretButton.swift @@ -63,7 +63,8 @@ open class CaretButton: MFCustomButton { private func changeCaretColor() { if let rightCaretView = rightView as? CaretView { - rightCaretView.tintColor = isEnabled ? enabledColor : disabledColor + let lineColor = isEnabled ? enabledColor : disabledColor + rightCaretView.setLineColor(lineColor) } }