Quick fix for edittext issue

This commit is contained in:
Benoit Marty 2021-05-27 13:02:10 +02:00 committed by Benoit Marty
parent cbed1afaaa
commit d3949729e1
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,8 @@ abstract class FormEditTextItem : VectorEpoxyModel<FormEditTextItem.Holder>() {
@EpoxyAttribute @EpoxyAttribute
var endIconMode: Int? = null var endIconMode: Int? = null
@EpoxyAttribute(EpoxyAttribute.Option.DoNotHash) // FIXME restore EpoxyAttribute.Option.DoNotHash and fix that properly
@EpoxyAttribute
var onTextChange: ((String) -> Unit)? = null var onTextChange: ((String) -> Unit)? = null
private val onTextChangeListener = object : SimpleTextWatcher() { private val onTextChangeListener = object : SimpleTextWatcher() {