Skip to content

Commit

Permalink
Override method in BindingAdapter.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
kojofosu committed Jan 11, 2022
1 parent d8a9f97 commit 1ae966b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/src/main/java/com/mcdev/quantitizer/BindingAdapter.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ fun setPikerListener(view: HorizontalQuantitizer, attChange: InverseBindingListe
override fun onDecrease() {
attChange.onChange()
}

override fun onValueChanged(value: Int) {
attChange.onChange()
}

override fun onIncrease() {
attChange.onChange()
}
Expand Down

0 comments on commit 1ae966b

Please sign in to comment.