Merge branch 'bugfix/caretview' into 'develop'

bugfix for caretbutton

See merge request BPHV_MIPS/mvm_core_ui!40
This commit is contained in:
Suresh, Kamlesh 2019-04-19 15:27:21 -04:00
commit 1bd9adebf9

View File

@ -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)
}
}